aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/css/selektory_typu/index.html
blob: 13dc191bb19574adcf4f8ef8e7de3d892f5df709 (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
---
title: Selektory typu
slug: Web/CSS/Selektory_typu
tags:
  - CSS
  - 'CSS:Dokumentacje'
  - Dokumentacje
  - Wszystkie_kategorie
translation_of: Web/CSS/Type_selectors
---
<div>{{CSSRef}}</div>

<p><strong>Selektory typu</strong> dopasowują wszystkie elementy mające taką samą nazwę jak dany selektor. Własności zostaną zastosowane do każdego elementu danego typu niezależnie od tego, gdzie znajduje się w drzewie dokumentu.</p>

<h2 id="Składnia">Składnia</h2>

<pre class="eval">selektor {<em>własności</em> }
</pre>

<p><code>selektor</code> jest do dowolnym elementem np. <code>p</code>, <code>div</code>, <code>a</code>, <code>table</code>.</p>

<h2 id="Przykłady" name="Przykłady">Przykład</h2>

<h3 id="CSS">CSS</h3>

<pre class="brush: css">span {
  background-color: skyblue;
}
</pre>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;span&gt;Span z tekstem.&lt;/span&gt;
&lt;p&gt;Akapit z tekstem.&lt;/p&gt;
&lt;span&gt;Span z większą ilością tekstu.&lt;/span&gt;
</pre>

<h3 id="Rezultat">Rezultat</h3>

<p>{{EmbedLiveSample('Przykład', '100%', 150)}}</p>

<h2 id="Specyfikacje">Specyfikacje</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specyfikacja</th>
   <th scope="col">Status</th>
   <th scope="col">Komentarz</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('CSS4 Selectors', '#type-selectors', 'Type (tag name) selector')}}</td>
   <td>{{Spec2('CSS4 Selectors')}}</td>
   <td>No changes</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Selectors', '#type-selectors', 'type selectors')}}</td>
   <td>{{Spec2('CSS3 Selectors')}}</td>
   <td>No changes</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS2.1', 'selector.html#type-selectors', 'type selectors')}}</td>
   <td>{{Spec2('CSS2.1')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('CSS1', '#basic-concepts', 'type selectors')}}</td>
   <td>{{Spec2('CSS1')}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Kompatybilność_przeglądarek">Kompatybilność przeglądarek</h2>



<p>{{Compat("css.selectors.type")}}</p>