diff options
Diffstat (limited to 'files/pl/web/css/content')
-rw-r--r-- | files/pl/web/css/content/index.html | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/files/pl/web/css/content/index.html b/files/pl/web/css/content/index.html new file mode 100644 index 0000000000..b9d75f21cc --- /dev/null +++ b/files/pl/web/css/content/index.html @@ -0,0 +1,107 @@ +--- +title: content +slug: Web/CSS/content +tags: + - CSS + - 'CSS:Dokumentacje' + - Dokumentacje + - Wszystkie_kategorie +translation_of: Web/CSS/content +--- +<p>{{ CSSRef() }}</p> + +<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3> + +<p>Własność <strong>content</strong> określa, co jest wyświetlane wewnątrz pseudoelementów :before i :after.</p> + +<ul> + <li>{{ Xref_cssinitial() }}: {{ Cssxref("normal") }}</li> + <li>Stosowana do: pseudoelementów {{ Cssxref(":before") }} i {{ Cssxref(":after") }}</li> + <li>{{ Xref_cssinherited() }}: nie</li> + <li>Procenty: niedostępne</li> + <li>Media: wszystkie</li> + <li>{{ Xref_csscomputed() }}:</li> +</ul> + +<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3> + +<pre class="eval">content : normal | none | inherit | no-open-quote | no-close-quote ; +</pre> + +<pre class="eval">content : [ <string> | <counter> | attr(<identifier>) | <uri> + | open-quote | close-quote]+ ; +</pre> + +<h3 id="Warto.C5.9Bci" name="Warto.C5.9Bci">Wartości</h3> + +<dl> + <dt>{{ Cssxref("none") }}</dt> + <dt>{{ Cssxref("normal") }}</dt> + <dt>{{cssxref("<string>")}}</dt> + <dt>{{cssxref("<uri>")}}</dt> + <dd>jeden lub więcej identyfikatorów URI odsyłających do zewnętrznego źródła, takiego jak obrazek.</dd> + <dt>{{cssxref("<counter>")}}</dt> + <dt>open-quote i close-quote</dt> + <dd>będzie to zamienione przez odpowiednie ciągi z własności 'quotes'.</dd> + <dt>no-open-quote i no-close-quote</dt> + <dd>zwiększa (zmniejsza) poziom zagnieżdżeń cytatów, ale nie dodaje żadnej zawartości.</dd> + <dt>attr(attribute-name)</dt> + <dd>będzie to zamienione przez wartość ciągu atrybutu węzła.</dd> +</dl> + +<h3 id="Przyk.C5.82ady" name="Przyk.C5.82ady">Przykłady</h3> + +<pre class="eval">q:lang { quotes: '"' '"' "'" "'" } +q:before { content: open-quote } +q:after { content: close-quote } +</pre> + +<pre class="eval">h1:before { + content: "Chapter: "; +} +</pre> + +<h3 id="Notatki" name="Notatki">Notatki</h3> + +<h3 id="Specyfikacje" name="Specyfikacje">Specyfikacje</h3> + +<ul> + <li><a class="external" href="http://www.w3.org/TR/CSS21/generate.html#content">W3C Cascading Style Sheets, level 2 revision 1</a></li> + <li><a class="external" href="http://www.w3.org/TR/REC-CSS2/generate.html#content">W3C Cascading Style Sheets, level 2</a></li> + <li><a class="external" href="http://www.w3.org/TR/css3-content/#inserting3">W3C Cascading Style Sheets, level 3</a></li> +</ul> + +<h3 id="Zgodno.C5.9B.C4.87_z_przegl.C4.85dark.C4.85" name="Zgodno.C5.9B.C4.87_z_przegl.C4.85dark.C4.85">Zgodność z przeglądarką</h3> + +<table class="standard-table"> + <tbody> + <tr> + <th>Przeglądarka</th> + <th>Najniższa wersja</th> + </tr> + <tr> + <td>Internet Explorer</td> + <td>?</td> + </tr> + <tr> + <td>Firefox</td> + <td>?</td> + </tr> + <tr> + <td>Netscape</td> + <td>?</td> + </tr> + <tr> + <td>Opera</td> + <td>?</td> + </tr> + <tr> + <td>Safari</td> + <td>?</td> + </tr> + </tbody> +</table> + +<h3 id="Zobacz_tak.C5.BCe" name="Zobacz_tak.C5.BCe">Zobacz także</h3> + +<p>{{ Cssxref("quotes") }}</p> |