From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/pl/web/css/content/index.html | 107 ++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 files/pl/web/css/content/index.html (limited to 'files/pl/web/css/content') 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 +--- +

{{ CSSRef() }}

+ +

Podsumowanie

+ +

Własność content określa, co jest wyświetlane wewnątrz pseudoelementów  :before i :after.

+ + + +

Składnia

+ +
content : normal | none | inherit | no-open-quote | no-close-quote ;
+
+ +
content : [ <string> | <counter> | attr(<identifier>) | <uri>
+                     | open-quote | close-quote]+ ;
+
+ +

Wartości

+ +
+
{{ Cssxref("none") }}
+
{{ Cssxref("normal") }}
+
{{cssxref("<string>")}}
+
{{cssxref("<uri>")}}
+
jeden lub więcej identyfikatorów URI odsyłających do zewnętrznego źródła, takiego jak obrazek.
+
{{cssxref("<counter>")}}
+
open-quote i close-quote
+
będzie to zamienione przez odpowiednie ciągi z własności 'quotes'.
+
no-open-quote i no-close-quote
+
zwiększa (zmniejsza) poziom zagnieżdżeń cytatów, ale nie dodaje żadnej zawartości.
+
attr(attribute-name)
+
będzie to zamienione przez wartość ciągu atrybutu węzła.
+
+ +

Przykłady

+ +
q:lang { quotes: '"' '"' "'" "'" }
+q:before { content: open-quote }
+q:after  { content: close-quote }
+
+ +
h1:before {
+  content: "Chapter: ";
+}
+
+ +

Notatki

+ +

Specyfikacje

+ + + +

Zgodność z przeglądarką

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PrzeglądarkaNajniższa wersja
Internet Explorer?
Firefox?
Netscape?
Opera?
Safari?
+ +

Zobacz także

+ +

{{ Cssxref("quotes") }}

-- cgit v1.2.3-54-g00ecf