diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
commit | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch) | |
tree | d4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/web/css/_colon_optional | |
parent | 33058f2b292b3a581333bdfb21b8f671898c5060 (diff) | |
download | translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2 translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip |
initial commit
Diffstat (limited to 'files/de/web/css/_colon_optional')
-rw-r--r-- | files/de/web/css/_colon_optional/index.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/files/de/web/css/_colon_optional/index.html b/files/de/web/css/_colon_optional/index.html new file mode 100644 index 0000000000..ccf6fe9770 --- /dev/null +++ b/files/de/web/css/_colon_optional/index.html @@ -0,0 +1,69 @@ +--- +title: ':optional' +slug: 'Web/CSS/:optional' +tags: + - CSS + - CSS Pseudoklasse + - Layout + - NeedsMobileBrowserCompatibility + - Referenz + - Web +translation_of: 'Web/CSS/:optional' +--- +<div>{{CSSRef}}</div> + +<h2 id="Übersicht">Übersicht</h2> + +<p>Die <code>:optional</code> CSS <a href="/de/docs/Web/CSS/Pseudo-classes" title="Pseudo-classes">Pseudoklasse</a> repräsentiert alle {{HTMLElement("input")}} Elemente, die kein {{htmlattrxref("required","input")}} Attribut enthalten.</p> + +<p>Für Pflichtfelder kann man die {{cssxref(":required")}} Pseudoklasse verwenden.</p> + +<h2 id="Beispiele">Beispiele</h2> + +<p>Siehe {{cssxref(":invalid")}}.</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('HTML WHATWG', '#selector-optional', ':optional')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>Keine Änderung</td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', '#selector-optional', ':optional')}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>Definiert die Semantik bezüglich HTML und Beschränkungsvalidierung.</td> + </tr> + <tr> + <td>{{SpecName('CSS4 Selectors', '#opt-pseudos', ':optional')}}</td> + <td>{{Spec2('CSS4 Selectors')}}</td> + <td>Keine Änderung</td> + </tr> + <tr> + <td>{{SpecName('CSS3 UI', '#pseudo-required-value', ':optional')}}</td> + <td>{{Spec2('CSS3 UI')}}</td> + <td>Definiert die Pseudoklasse, aber nicht die zugehörige Semantik.</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2> + +{{Compat("css.selectors.optional")}} + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li>{{cssxref(":required")}}</li> + <li>{{cssxref(":invalid")}}</li> + <li>{{cssxref(":valid")}}</li> +</ul> |