aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/_colon_not
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/web/css/_colon_not
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/de/web/css/_colon_not')
-rw-r--r--files/de/web/css/_colon_not/index.html76
1 files changed, 76 insertions, 0 deletions
diff --git a/files/de/web/css/_colon_not/index.html b/files/de/web/css/_colon_not/index.html
new file mode 100644
index 0000000000..cddf772707
--- /dev/null
+++ b/files/de/web/css/_colon_not/index.html
@@ -0,0 +1,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">&lt;p&gt;Irgendein Text.&lt;/p&gt;
+&lt;p class="classy"&gt;Irgendein anderer Text.&lt;/p&gt;
+&lt;span&gt;Noch mehr Text&lt;span&gt;
+</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")}}