blob: 1e3bcc1ac149f82cbb317c1ed6632c874aeb1cf5 (
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
|
---
title: text-transform
slug: Web/CSS/text-transform
tags:
- CSS
- 'CSS:Dokumentacje'
- Dokumentacje
- Wszystkie_kategorie
translation_of: Web/CSS/text-transform
---
<p>{{ CSSRef() }}</p>
<h2 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h2>
<p>Własność CSS 'text-transform' definiuje, czy tekst w elemencie powinien być wyświetlony kapitalikami lub wielkimi literami.</p>
<p>{{cssinfo}}</p>
<h2 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h2>
<pre class="eval">text-transform : capitalize | uppercase | lowercase| none
</pre>
<h3 id="Warto.C5.9Bci" name="Warto.C5.9Bci">Wartości</h3>
<dl>
<dt>capitalize</dt>
<dd>Pierwsza litera każdego słowa jest zmieniana na wielką, inne zostają bez zmian.</dd>
<dt>uppercase</dt>
<dd>Wszystkie litery są przekształcane na wielkie.</dd>
<dt>lowercase</dt>
<dd>Wszystkie litery są przekształcane na małe.</dd>
<dt>none</dt>
<dd>Żadne zmiany wielkości liter nie są dokonywane.</dd>
</dl>
<h2 id="Examples" name="Examples">Examples</h2>
<pre class="eval">p::first-line {
text-transform: uppercase;
}
</pre>
<h2 id="Specyfikacje" name="Specyfikacje">Specyfikacje</h2>
<ul>
<li><a class="external" href="http://www.w3.org/TR/CSS21/text.html#caps-prop">CSS level 2 revision 1</a></li>
<li><a class="external" href="http://www.w3.org/TR/CSS1#text-transform">CSS level 1</a></li>
<li><a class="external" href="http://www.w3.org/TR/css3-text/">W3C Cascading Style Sheets, level 3</a> (jeszcze niegotowa)</li>
</ul>
<h2 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ą</h2>
<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>
|