aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/css/class_selectors/index.html
blob: 12f8d4f5c8bf58109b83556696f1e8937932804b (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
78
79
80
81
82
83
84
85
86
---
title: Selektor klasy
slug: Web/CSS/Selektor_klasy
tags:
  - CSS
  - Klasy
  - Reference
  - Selektory
translation_of: Web/CSS/Class_selectors
---
<div>{{CSSRef("Selectors")}}</div>

<div> </div>

<div>Selektor klasy wyszukuje każdy element z atrybutem {{htmlattrxref("class")}} w dokumencie HTML. Atrybut {{htmlattrxref("class")}} jest zdefiniowany jako lista przedmiotów oddzielonych ze sobą spacją, jeden z nich musi zgadzać się z podaną klasą w selektorze (CSS).</div>

<div> </div>

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

<pre class="syntaxbox">.nazwaklasy { <span class="short_text" id="result_box" lang="pl"><span>właściwości</span> <span>stylu</span></span> }</pre>

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

<pre class="syntaxbox">[class~=nazwaklasy] { <span class="short_text" id="result_box" lang="pl"><span>właściwości</span> <span>stylu</span></span> }</pre>

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

<h3 id="CSS">CSS</h3>

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

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;span class="classy"&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/#class-html">Selectors Level 4</a></li>
 <li><a href="https://drafts.csswg.org/selectors-3/#class-html">Selectors Level 3</a></li>
 <li><a href="http://www.w3.org/TR/CSS2/selector.html#class-html">CSS Level 2 (Revision 1)</a></li>
 <li><a href="http://www.w3.org/TR/CSS1/#class-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>

<p> </p>