diff options
Diffstat (limited to 'files/de/web/css/property_template/index.html')
-rw-r--r-- | files/de/web/css/property_template/index.html | 165 |
1 files changed, 165 insertions, 0 deletions
diff --git a/files/de/web/css/property_template/index.html b/files/de/web/css/property_template/index.html new file mode 100644 index 0000000000..57b2483609 --- /dev/null +++ b/files/de/web/css/property_template/index.html @@ -0,0 +1,165 @@ +--- +title: Eigenschaft Vorlage +slug: Web/CSS/Property_Template +tags: + - CSS + - CSS Referenz + - MDN Meta +translation_of: MDN/Contribute/Howto/Document_a_CSS_property/Property_template +--- +<div>{{MDNSidebar}}</div><div>{{ CSSRef() }}</div> + +<h2 id="Übersicht">Übersicht</h2> + +<p>Eine Beschreibung der Eigenschaft, welche erklärt was diese Eigenschaft bewirkt.</p> + +<div class="note">(Falls vorhanden) Wichtige Informationen zu dieser Eigenschaft</div> + +<p>{{cssinfo}}</p> + +<h2 id="Syntax">Syntax</h2> + +<pre class="brush:css">/* Schlüsselwortwerte */ +property: value1; +property: value2; + +/* <length> Werte */ +property: 12.8em; + +/* Globale Werte */ +property: inherit; <em><-- To remember those are a possible values</em> +property: initial; +property: unset; +</pre> + +<p><strong><Wert></strong>: wert | wert2 | wert3 | wert2</p> + +<h2 id="Werte">Werte</h2> + +<dl> + <dt>wert1 {{ gecko_minversion_inline("9.9") }}</dt> + <dd>Erläuterung.</dd> + <dt>wert2</dt> + <dd>....</dd> +</dl> + +<h3 id="(Falls_vorhanden)_Mozilla_Erweiterungen">(Falls vorhanden) Mozilla Erweiterungen</h3> + +<dl> + <dt>-moz-*</dt> + <dd>Erklärung</dd> +</dl> + +<h3 id="Formale_Syntax">Formale Syntax</h3> + +<pre class="syntaxbox">{{csssyntax}}</pre> + +<h2 id="Beispiele">Beispiele</h2> + +<h3 id="Beispiel_1">Beispiel 1</h3> + +<h4 id="CSS">CSS</h4> + +<pre class="brush:css">ElementName { + Eigenschaft: Wert; + dazu: "Beispiel"; + Traum: 10000000mm; + Liebe: "Gefahr"; +}</pre> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><ElementName>foo bar</ElementName></pre> + +<h4 id="Ergebnis">Ergebnis</h4> + +<p>{{EmbedLiveSample("Beispiel_1")}}</p> + +<h3 id="Beispiel_2_gecko_minversion_inline(9.9)">Beispiel 2 {{ gecko_minversion_inline("9.9") }}</h3> + +<pre class="brush:css">ElementName { + eigenschaft: wert; + /* ... */ +}</pre> + +<h2 id="Spezifikationen">Spezifikationen</h2> + +<p><em>Benutze ausschließlich die Standardtabelle. Füge andere Spezifikationen am Ende an. Benutze das Makro \{{SpecName()}} für den Name und \{{Spec2()}} für den Status. Auf diese Weise wird der Tabelleninhalt automatisch angepasst, sobald sich der Status einer Spezifikation ändert.</em></p> + +<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("CSS3 Animations", "#fake-link", "fake-value")}}</td> + <td>{{Spec2("CSS3 Animations")}}</td> + <td>Keine Änderung</td> + </tr> + <tr> + <td>{{SpecName("CSS2.1", "#fake-link", "fake value")}}</td> + <td>{{Spec2("CSS2.1")}}</td> + <td>Ursprüngliche Definition</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2> + +<p>{{CompatibilityTable()}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Merkmal</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Grundlegende Unterstützung</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>100</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Merkmal</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Grundlegende Unterstützung</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>100</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li><code>Links zu verwandten Eigenschaften</code></li> +</ul> |