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
|
---
title: ':not()'
slug: 'Web/CSS/:not'
tags:
- CSS
- CSS Pseudoklasse
- Layout
- Referenz
- Selektoren
- Web
translation_of: 'Web/CSS/:not'
---
<div>{{ CSSRef() }}</div>
<h2 id="Summary" name="Summary">Übersicht</h2>
<p>Die <a href="/de/docs/Web/CSS">CSS</a> <a href="/de/docs/Web/CSS/Pseudo-classes" title="Pseudo-classes">Pseudoklasse</a> <code>:not(X)</code> ist eine Negation zu einem Selektor <var>X</var> als Argument und wird als Funktion angegeben. Sie passt auf Elemente, die nicht durch das Argument repräsentiert werden. X darf keinen weiteren Negationsselektor beinhalten.</p>
<p>Die <a href="/de/docs/Web/CSS/Spezifit%C3%A4t">Spezifität</a> der <code>:not</code> Pseudoklasse entspricht der Spezifität seines Arguments. Die <code>:not</code> Pseudoklasse hat im Gegensatz zu anderen Pseudoklassen keinen Einfluss auf die Spezifität.</p>
<div class="note"><strong>Hinweise:</strong>
<ul>
<li>Mit der Negation können auch irrationale Selektoren erstellt werden, z. B. <code>:not(*)</code>, welche alle Elemente auswählen würde, die keine Elemente sind.</li>
<li>Es ist möglich, andere Regeln zu überschreiben. <code>A:not(B)</code> hat den selben Effekt wie <code>A</code>, aber eine höhere Spezifität.</li>
<li><code>:not(bla){}</code> passt auf alle Elemente, die nicht <code>bla</code> sind <strong>einschließlich <code>html</code> und <code>body</code></strong>.</li>
</ul>
</div>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<pre class="syntaxbox">:not(selector) { <em>Stileigenschaften</em> }</pre>
<h2 id="Beispiele">Beispiele</h2>
<pre class="brush: css">p:not(.classy) { color: red; }
:not(p) { color: green; }</pre>
<p>auf folgendes HTML angewandt:</p>
<pre class="brush: html"><p>Irgendein Text.</p>
<p class="classy">Irgendein anderer Text.</p>
<span>Noch mehr Text<span>
</pre>
<p>ergibt:</p>
<p>{{EmbedLiveSample('Beispiele', '100%', '150')}}</p>
<h2 id="Specifications" name="Specifications">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', '#negation', ':not()')}}</td>
<td>{{Spec2('CSS4 Selectors')}}</td>
<td>Argument erweitert, um komplexe Selektoren zu ermöglichen.</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Selectors', '#negation', ':not()')}}</td>
<td>{{Spec2('CSS3 Selectors')}}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">Browser Kompatibilität</h2>
{{Compat("css.selectors.not")}}
|