blob: b9d75f21cc895500dfd4c29fffac84ffc666ebec (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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>
|