diff options
Diffstat (limited to 'files/pl/web/css/_doublecolon_first-letter/index.html')
-rw-r--r-- | files/pl/web/css/_doublecolon_first-letter/index.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/files/pl/web/css/_doublecolon_first-letter/index.html b/files/pl/web/css/_doublecolon_first-letter/index.html new file mode 100644 index 0000000000..99ff062843 --- /dev/null +++ b/files/pl/web/css/_doublecolon_first-letter/index.html @@ -0,0 +1,50 @@ +--- +title: ':first-letter' +slug: Web/CSS/::first-letter +tags: + - CSS + - CSS:Dokumentacje + - Dokumentacje + - Wszystkie_kategorie +translation_of: Web/CSS/::first-letter +original_slug: Web/CSS/:first-letter +--- +<p>{{ CSSRef() }}</p> + +<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3> + +<p>Pseudoelement odnoszący się do pierwszej litery w bloku.</p> + +<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3> + +<pre class="eval notranslate">element::first-letter { własności } +</pre> + +<h3 id="Przyk.C5.82ady" name="Przyk.C5.82ady">Przykłady</h3> + +<pre class="eval notranslate">p::first-letter { text-transform: uppercase; } +</pre> + +<p>Przykład zamieni w każdym paragrafie pierwszą literę na wielką.</p> + +<pre class="eval notranslate">p::first-letter { color: red; } +</pre> + +<p>Przykład zmieni kolor pierwszej litery na czerwony w każdym elemencie <code>p</code></p> + + + +<h3 id="Notatki" name="Notatki">Notatki</h3> + +<p>Pseudoelementy nie mogą być negowane poprzez {{ Cssxref(":not") }}.</p> + +<h3 id="Specyfikacje" name="Specyfikacje">Specyfikacje</h3> + +<ul> + <li><a class="external" href="http://www.w3.org/TR/1998/REC-CSS2-19980512/selector.html#first-letter">CSS 2.1</a></li> + <li><a class="external" href="http://www.w3.org/TR/css3-selectors/#first-letter">CSS 3</a></li> +</ul> + +<h3 id="Zobacz_tak.C5.BCe" name="Zobacz_tak.C5.BCe">Zobacz także</h3> + +<p>{{ Cssxref("text-transform") }}</p> |