aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/css/id_selectors/index.html
blob: 927d3795be85d8e746113bd38ba392a680d95121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
title: Selektory ID
slug: Web/CSS/ID_selectors
tags:
  - Beginner
  - CSS
  - CSS Reference
  - Selektory
translation_of: Web/CSS/ID_selectors
---
<div>{{CSSRef("Selectors")}}<br>
<strong>Selektor ID</strong> wyszukuje każdy element z atrybutem {{htmlattrxref("ID")}} o takiej samej nazwie w dokumencie HTML.</div>

<div> </div>

<h2 id="Składnia">Składnia</h2>

<pre class="syntaxbox">#przykladowe_id { <em>właściwości stylu</em> }</pre>

<p>Jest to równoważne z {{Cssxref("Attribute_selectors", "attribute selector")}}:</p>

<pre class="syntaxbox">[id=przykladowe_id] { <em>właściwości stylu</em> }</pre>

<h2 id="Przykład">Przykład</h2>

<pre class="brush: css">span#mojeid {
  background-color: DodgerBlue;
}
</pre>

<pre class="brush: html">&lt;span id="mojeid"&gt;Przykładowy tekst.&lt;/span&gt;
&lt;span&gt;Kolejny przykładowy tekst.&lt;/span&gt;
</pre>

<h2 id="Specyfikacje">Specyfikacje</h2>

<ul>
 <li><a href="https://drafts.csswg.org/selectors-4/#id-selectors">Selectors Level 4</a></li>
 <li><a href="https://drafts.csswg.org/selectors-3/#id-selectors">Selectors Level 3</a></li>
 <li><a href="http://www.w3.org/TR/CSS2/selector.html#id-selectors">CSS Level 2 (Revision 1)</a></li>
 <li><a href="http://www.w3.org/TR/CSS1/#id-as-selector">CSS Level 1</a></li>
</ul>

<h2 id="Kompatybilność_z_przeglądarkami">Kompatybilność z przeglądarkami</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <td><strong>Przeglądarka</strong></td>
   <td><strong>Wsparcie</strong></td>
  </tr>
  <tr>
   <td>Chrome</td>
   <td>Tak</td>
  </tr>
  <tr>
   <td>Edge</td>
   <td>Tak</td>
  </tr>
  <tr>
   <td>Firefox</td>
   <td>Tak</td>
  </tr>
  <tr>
   <td>Internet Explorer</td>
   <td>Tak</td>
  </tr>
  <tr>
   <td>Opera</td>
   <td>Tak</td>
  </tr>
  <tr>
   <td>Safari</td>
   <td>Tak</td>
  </tr>
 </tbody>
</table>