aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/universal_selectors/index.html
blob: 4253374c81e06d43b67bc7be95cc0c20e310cd77 (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: Universalselektoren
slug: Web/CSS/Universal_selectors
tags:
  - Anfänger
  - CSS
  - CSS Referenz
  - Selektoren
translation_of: Web/CSS/Universal_selectors
---
<div>{{CSSRef("Selectors")}}</div>

<h2 id="Übersicht">Übersicht</h2>

<p>Ein Sternchen (<code>*</code>) ist der Universalselektor für CSS. Es matcht ein einzelnes Element eines beliebigen Typs. Das Weglassen des Sternchens bei einfachen Selektoren hat denselben Effekt. Zum Beispiel sind <code>*.warning</code> und <code>.warning</code> gleich.</p>

<p>In CSS 3 kann das Sternchen in Kombination mit Namensräumen verwendet werden:</p>

<ul>
 <li><code>ns|*</code> - matcht alle Elemente im Namensraum ns</li>
 <li><code>*|*</code> - matcht alle Elemente</li>
 <li><code>|*</code> - matcht alle Elemente ohne einen angegebenen Namensraum</li>
</ul>

<h2 id="Beispiel">Beispiel</h2>

<pre class="brush: css">* [lang^=en] {
  color: green;
}

* .warning {
  color: red;
}

* #maincontent {
  border: 1px solid blue;
}
</pre>

<pre class="brush: html">&lt;p class="warning"&gt;
  &lt;span lang="en-us"&gt;Ein grüner &amp;lt;span&amp;gt;&lt;/span&gt; in einem roten Absatz.
&lt;/p&gt;
&lt;p id="maincontent" lang="en-gb"&gt;
  &lt;span class="warning"&gt;Ein roter &amp;lt;span&amp;gt;&lt;/span&gt; in einem grünen Absatz.
&lt;/p&gt;</pre>

<p>{{EmbedLiveSample('Beispiel', 250, 100)}}</p>

<h2 id="Spezifikationen">Spezifikationen</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Spezifikation</th>
   <th scope="col">Status</th>
   <th scope="col">Kommentar</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('CSS4 Selectors', '#the-universal-selector', 'Universalselektor')}}</td>
   <td>{{Spec2('CSS4 Selectors')}}</td>
   <td>Keine Änderung</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Selectors', '#universal-selector', 'Universalselektor')}}</td>
   <td>{{Spec2('CSS3 Selectors')}}</td>
   <td>Definiert das Verhalten in Bezug auf Namensräume weist darauf hin, dass das Weglassen des Selektors innerhalb von Pseudoelementen erlaubt ist</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS2.1', 'selector.html#universal-selector', 'Universalselektor')}}</td>
   <td>{{Spec2('CSS2.1')}}</td>
   <td>Ursprüngliche Definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>

{{Compat("css.selectors.universal")}}