diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:49:24 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:49:24 +0100 |
commit | de5c456ebded0e038adbf23db34cc290c8829180 (patch) | |
tree | 2819c07a177bb7ec5f419f3f6a14270d6bcd7fda /files/pl/web/css/class_selectors/index.html | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-de5c456ebded0e038adbf23db34cc290c8829180.tar.gz translated-content-de5c456ebded0e038adbf23db34cc290c8829180.tar.bz2 translated-content-de5c456ebded0e038adbf23db34cc290c8829180.zip |
unslug pl: move
Diffstat (limited to 'files/pl/web/css/class_selectors/index.html')
-rw-r--r-- | files/pl/web/css/class_selectors/index.html | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/files/pl/web/css/class_selectors/index.html b/files/pl/web/css/class_selectors/index.html new file mode 100644 index 0000000000..12f8d4f5c8 --- /dev/null +++ b/files/pl/web/css/class_selectors/index.html @@ -0,0 +1,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"><span class="classy">Przykładowy tekst.</span> +<span>Kolejny przykładowy tekst.</span> +</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> |