diff options
Diffstat (limited to 'files/de/web/css/appearance/index.html')
-rw-r--r-- | files/de/web/css/appearance/index.html | 1532 |
1 files changed, 1532 insertions, 0 deletions
diff --git a/files/de/web/css/appearance/index.html b/files/de/web/css/appearance/index.html new file mode 100644 index 0000000000..12a67f3f60 --- /dev/null +++ b/files/de/web/css/appearance/index.html @@ -0,0 +1,1532 @@ +--- +title: '-moz-appearance (-webkit-appearance)' +slug: Web/CSS/appearance +tags: + - CSS + - CSS Referenz + - nicht Standard +translation_of: Web/CSS/appearance +--- +<div>{{non-standard_header}}{{CSSRef}}</div> + +<h2 id="Übersicht">Übersicht</h2> + +<p>Die CSS-Eigenschaft <code>-moz-appearance</code> wird von Gecko (Firefox) dazu verwendet, um ein Element mit dem nativen Stil der Plattform anzuzeigen, wie er im Betriebssystem eingestellt ist.</p> + +<p>Diese Eigenschaft wird häufig in <a href="/de/docs/Mozilla/Tech/XUL" title="en/XUL">XUL</a>-Stylesheets verwendet, um individuelle Eingabefelder passend zur Plattform zu gestalten. Auch die <a href="/de/docs/XBL" title="en/XBL">XBL</a>-Implementierungen der in Mozilla enthaltenen Bedienelemente verwenden diese Eigenschaft.</p> + +<div class="note"> +<p>Verwende diese Eigenschaft <em>nicht</em> für Websites: Sie entspricht nicht den Webstandards und ihre Auswirkungen unterscheiden sich von einem Browser zum anderen. Sogar der Wert <code>none</code> hat in den verschiedenen Browsern kein einheitliches Verhalten für alle Formularelemente, und teilweise wird sie überhaupt nicht unterstützt.</p> +</div> + +<p>{{cssinfo}}</p> + +<h2 id="Syntax">Syntax</h2> + +<pre class="brush: css">/* Partielle Liste verfügbarer Werte in Gecko */ +-moz-appearance: none; +-moz-appearance: button; +-moz-appearance: checkbox; +-moz-appearance: scrollbarbutton-up; + +/* Partielle Liste verfügbarer Werte in WebKit/Blink */ +-webkit-appearance: none; +-webkit-appearance: button; +-webkit-appearance: checkbox; +-webkit-appearance: scrollbarbutton-up; +</pre> + +<h3 id="Werte">Werte</h3> + +<p><code><appearance></code> ist eines der folgenden Schlüsselwörter:</p> + +<table class="standard-table"> + <tbody> + <tr> + <th>Wert</th> + <th>Demo</th> + <th>Beschreibung</th> + </tr> + <tr> + <td><code>none</code></td> + <td> + <div id="sampleNone" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: none; -webkit-appearance: none; color: black;}</pre> + + <pre class="brush:html"> + <div>Lorem</div> +</pre> + </div> + {{EmbedLiveSample("sampleNone",100,50,"","", "nobutton")}}</td> + <td>Keine besondere Formatierung wird angewandt. Dies ist der Standardwert. Beachten Sie aber {{ bug(649849) }} und {{ bug(605985) }}.</td> + </tr> + <tr> + <td><code>button</code></td> + <td> + <div id="sampleButton" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: button; -webkit-appearance: button; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleButton",100,50,"","", "nobutton")}}</td> + <td>Das Element wird wie eine Schaltfläche gezeichnet.</td> + </tr> + <tr> + <td><code>button-arrow-down</code></td> + <td> + <div id="sampleButtonArrowDown" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: button-arrow-down; -webkit-appearance: button-arrow-down; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleButtonArrowDown",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>button-arrow-next</code></td> + <td> + <div id="sampleButtonArrowNext" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: button-arrow-next; -webkit-appearance: button-arrow-next; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleButtonArrowNext",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>button-arrow-previous</code></td> + <td> + <div id="sampleButtonArrowPrevious" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: button-arrow-previous; -webkit-appearance: button-arrow-previous; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleButtonArrowPrevious",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>button-arrow-up</code></td> + <td> + <div id="sampleButtonArrowUp" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: button-arrow-up; -webkit-appearance: button-arrow-up; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleButtonArrowUp",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>button-bevel</code></td> + <td> + <div id="sampleButtonBevel" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: button-bevel; -webkit-appearance: button-bevel; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleButtonBevel",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>button-focus</code></td> + <td> + <div id="sampleButtonFocus" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: button-focus; -webkit-appearance: button-focus; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleButtonFocus",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>caret</code></td> + <td> + <div id="sampleCaret" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: caret; -webkit-appearance: caret; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleCaret",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>checkbox</code></td> + <td> + <div id="sampleCheckbox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: checkbox; -webkit-appearance: checkbox; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleCheckbox",100,50,"","", "nobutton")}}</td> + <td>Das Element wird wie der innere Teil einer Checkbox gezeichnet.</td> + </tr> + <tr> + <td><code>checkbox-container</code></td> + <td> + <div id="sampleCheckboxContainer" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: checkbox-container; -webkit-appearance: checkbox-container; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleCheckboxContainer",100,50,"","", "nobutton")}}</td> + <td>Das Element wird wie ein Container für eine Checkbox gezeichnet, was einen vorilluminierenden Hintergrundeffekt unter bestimmten Plattformen beinhaltet. Normalerweise beinhaltet er ein Label und eine Checkbox.</td> + </tr> + <tr> + <td><code>checkbox-label</code></td> + <td> + <div id="sampleCheckboxLabel" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: checkbox-label; -webkit-appearance: checkbox-label; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleCheckboxLabel",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>checkmenuitem</code></td> + <td> + <div id="sampleCheckmenuitem" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: checkmenuitem; -webkit-appearance: checkmenuitem; height: 20px; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleCheckmenuitem",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>dualbutton</code></td> + <td> + <div id="sampleDualButton" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: dualbutton; -webkit-appearance: dualbutton; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleDualButton",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>groupbox</code></td> + <td> + <div id="sampleGroupbox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: groupbox; -webkit-appearance: groupbox; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleGroupbox",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>listbox</code></td> + <td> + <div id="sampleListBox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: listbox; -webkit-appearance: listbox; height:20px; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleListBox",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>listitem</code></td> + <td> + <div id="sampleListItem" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: listitem; -webkit-appearance: listitem; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleListItem",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menuarrow</code></td> + <td> + <div id="sampleMenuArrow" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menuarrow; -webkit-appearance: menuarrow; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuArrow",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menubar</code></td> + <td> + <div id="sampleMenubar" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menubar; -webkit-appearance: menubar; color: balck; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenubar",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menucheckbox</code></td> + <td> + <div id="sampleMenuCheckbox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menucheckbox; -webkit-appearance: menucheckbox; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuCheckbox",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menuimage</code></td> + <td> + <div id="sampleMenuImage" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menuimage; -webkit-appearance: menuimage; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuImage",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menuitem</code></td> + <td> + <div id="sampleMenuItem" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menuitem; -webkit-appearance: menuitem; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuItem",100,50,"","", "nobutton")}}</td> + <td>Das Element wird wie ein Menüeintrag dargestellt, wobei der Eintrag hervorgehoben wird, wenn sich der Mauscursor darüber befindet.</td> + </tr> + <tr> + <td><code>menuitemtext</code></td> + <td> + <div id="sampleMenuItemText" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menuitemtext; -webkit-appearance: menuitemtext; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuItemText",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menulist</code></td> + <td> + <div id="sampleMenuList" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menulist; -webkit-appearance: menulist; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuList",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menulist-button</code></td> + <td> + <div id="sampleMenuListButton" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menulist-button; -webkit-appearance: menulist-button; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuListButton",100,50,"","", "nobutton")}}</td> + <td>Das Element wird wie eine Schaltfläche dargestellt, die eine Menüliste darstellt, die geöffnet werden kann.</td> + </tr> + <tr> + <td><code>menulist-text</code></td> + <td> + <div id="sampleMenuListText" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menulist-text; -webkit-appearance: menulist-text; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuListText",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menulist-textfield</code></td> + <td> + <div id="sampleMenuListTextfield" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menulist-textfield; -webkit-appearance: menulist-textfield; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuListTextfield",100,50,"","", "nobutton")}}</td> + <td>Dieses Element wird wie ein Texteingabefeld einer Menüliste dargestellt. (Nicht für die Windows Plattform implementiert.)</td> + </tr> + <tr> + <td><code>menupopup</code></td> + <td> + <div id="sampleMenuPopup" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menupopup; -webkit-appearance: menupopup; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuPopup",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menuradio</code></td> + <td> + <div id="sampleMenuRadio" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menuradio; -webkit-appearance: menuradio; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuRadio",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>menuseparator</code></td> + <td> + <div id="sampleMenuSeparator" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: menuseparator; -webkit-appearance: menuseparator; color: transparent; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMenuSeparator",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>meterbar</code></td> + <td> + <div id="sampleMeterbar" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: meterbar; -webkit-appearance: meterbar; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMeterbar",100,50,"","", "nobutton")}}</td> + <td>Neu in Firefox 16</td> + </tr> + <tr> + <td><code>meterchunk</code></td> + <td> + <div id="sampleMeterchunk" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: meterchunk; -webkit-appearance: meterchunk; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMeterchunk",100,50,"","", "nobutton")}}</td> + <td>Neu in Firefox 16</td> + </tr> + <tr> + <td><code>progressbar</code></td> + <td> + <div id="sampleProgressBar" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: progressbar; -webkit-appearance: progressbar; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleProgressBar",100,50,"","", "nobutton")}}</td> + <td>Das Element wird wie ein Fortschrittsbalken dargestellt.</td> + </tr> + <tr> + <td><code>progressbar-vertical</code></td> + <td> + <div id="sampleProgressBarVertical" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: progressbar-vertical; -webkit-appearance: preogressbar-vertical; color: transparent; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleProgressBarVertical",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>progresschunk</code></td> + <td> + <div id="sampleProgressChunk" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: progresschunk; -webkit-appearance: progresschunk; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleProgressChunk",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>progresschunk-vertical</code></td> + <td> + <div id="sampleProgressChunkVertical" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: progresschunk-vertical; -webkit-appearance: progresschunk-vertical; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleProgressChunkVertical",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>radio</code></td> + <td> + <div id="sampleRadio" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: radio; -webkit-appearance: radio; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleRadio",100,50,"","", "nobutton")}}</td> + <td>Das Element wird wie der innere Teil eines Radiobuttons gezeichnet.</td> + </tr> + <tr> + <td><code>radio-container</code></td> + <td> + <div id="sampleRadioContainer" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: radio-container; -webkit-appearance: radio-container; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleRadioContainer",100,50,"","", "nobutton")}}</td> + <td>Das Element wird wie ein Container für einen Radiobutton gezeichnet, was einen vorilluminierenden Hintergrundeffekt unter bestimmten Plattformen beinhaltet. Normalerweise beinhaltet er ein Label und einen Radiobutton.</td> + </tr> + <tr> + <td><code>radio-label</code></td> + <td> + <div id="sampleRadioLabel" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: radio-label; -webkit-appearance: radio-label; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleRadioLabel",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>radiomenuitem</code></td> + <td> + <div id="sampleRadioMenuItem" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: radiomenuitem; -webkit-appearance: radiomenuitem; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleRadioMenuItem",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>resizer</code></td> + <td> + <div id="sampleResizer" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: resizer; -webkit-appearance: resizer; color: transparent; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleResizer",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>resizerpanel</code></td> + <td> + <div id="sampleResizerPanel" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: resizerpanel; -webkit-appearance: resizerpanel; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleResizerPanel",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scale-horizontal</code></td> + <td> + <div id="sampleScaleHorizontal" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scale-horizontal; -webkit-appearance: scale-horizontal; color: transparent; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScaleHorizontal",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scalethumbend</code></td> + <td> + <div id="sampleThumbEnd" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scalethumbend; -webkit-appearance: scalethumbend; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleThumbEnd",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scalethumb-horizontal</code></td> + <td> + <div id="sampleScaleThumbHorizontal" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scalethumb-horizontal; -webkit-appearance: scalethumb-horizontal; color: transparent; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScaleThumbHorizontal",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scalethumbstart</code></td> + <td> + <div id="sampleScaleThumbStart" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scalethumbstart; -webkit-appearance: scalethumbstart; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScaleThumbStart",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scalethumbtick</code></td> + <td> + <div id="sampleScaleThumbTick" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scalethumbtick; -webkit-appearance: scalethumbtick; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScaleThumbTick",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scalethumb-vertical</code></td> + <td> + <div id="sampleScaleThumbVertical" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scalethumb-vertical; -webkit-appearance: scalethumb-vertical; color: black; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScaleThumbVertical",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scale-vertical</code></td> + <td> + <div id="sampleScaleVertical" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scale-vertical; -webkit-appearance: scale-vertical; color: transparent; }</pre> + + <pre class="brush:html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScaleVertical",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scrollbarbutton-down</code></td> + <td> + <div id="sampleScrollbarButtonDown" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scrollbarbutton-down; -webkit-appearance: scrollbarbutton-down; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScrollbarButtonDown",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scrollbarbutton-left</code></td> + <td> + <div id="sampleScrollbarButtonLeft" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scrollbarbutton-left; -webkit-appearance: scrollbarbutton-left; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScrollbarButtonLeft",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scrollbarbutton-right</code></td> + <td> + <div id="sampleScrollbarButtonRight" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scrollbarbutton-right; -webkit-appearance: scrollbarbutton-right; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScrollbarButtonRight",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scrollbarbutton-up</code></td> + <td> + <div id="sampleScrollbarButtonUp" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scrollbarbutton-up; -webkit-appearance: scrollbarbutton-up; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScrollbarButtonUp",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scrollbarthumb-horizontal</code></td> + <td> + <div id="sampleScrollbarThumbHorizontal" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scrollbarthumb-horizontal; -webkit-appearance: scrollbarthumb-horizontal; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScrollbarThumbHorizontal",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scrollbarthumb-vertical</code></td> + <td> + <div id="sampleScrollbarThumbVertical" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scrollbarthumb-vertical; -webkit-appearance: scrollbarthumb-vertical; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScrollbarThumbVertical",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scrollbartrack-horizontal</code></td> + <td> + <div id="sampleScrollbarTrackHorizontal" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scrollbartrack-horizontal; -webkit-appearance: scrollbartrack-horizontal; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScrollbarTrackHorizontal",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>scrollbartrack-vertical</code></td> + <td> + <div id="sampleScrollbarTrackVertical" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: scrollbartrack-vertical; -webkit-appearance: scrollbarbartrack-vertical; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleScrollbarTrackVertical",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>searchfield</code></td> + <td> + <div id="sampleSearchField" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: searchfield; -webkit-appearance: searchfield; color: black; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleSearchField",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>separator</code></td> + <td> + <div id="sampleSeparator" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: separator; -webkit-appearance: separator; color: transparent; }</pre> + + <pre class="bruh: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleSeparator",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>sheet</code></td> + <td> + <div id="sampleSheet" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: sheet; -webkit-appearance: sheet; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleSheet",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>spinner</code></td> + <td> + <div id="sampleSpinner" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: spinner; -webkit-appearance: spinner; color: transparent; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleSpinner",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>spinner-downbutton</code></td> + <td> + <div id="sampleSpinnerDownbutton" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: spinner-downbutton; -webkit-appearance: spinner-downbutton; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleSpinnerDownbutton",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>spinner-textfield</code></td> + <td> + <div id="sampleSpinnerTextfield" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: spinner-textfield; -webkit-appearance: spinner-textfield; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleSpinnerTextfield",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>spinner-upbutton</code></td> + <td> + <div id="sampleSpinnerUpbutton" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: spinner-upbutton; -webkit-appearance: spinner-upbutton; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleSpinnerUpbutton",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>splitter</code></td> + <td> + <div id="sampleSplitter" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: splitter; -webkit-appearance: splitter; color: transparent; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleSplitter",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>statusbar</code></td> + <td> + <div id="sampleStatusBar" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: statusbar; -webkit-appearance: statusbar; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleStatusBar",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>statusbarpanel</code></td> + <td> + <div id="sampleStatusBarPanel" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: statusbarpanel; -webkit-appearance: statusbarpanel; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleStatusBarPanel",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>tab</code></td> + <td> + <div id="sampleTab" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: tab; -webkit-appearance: tab; height: 20px; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTab",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>tabpanel</code></td> + <td> + <div id="sampleTabPanel" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: tabpanel; -webkit-appearance: tabpanel; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTabPanel",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>tabpanels</code></td> + <td> + <div id="sampleTabPanels" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: tabpanels; -webkit-appearance: tabpanels; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTabPanels",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>tab-scroll-arrow-back</code></td> + <td> + <div id="sampleTabScrollArrowBack" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: tab-scroll-arrow-back; -webkit-appearance: tab-scroll-arrow-back; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTabScrollArrowBack",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>tab-scroll-arrow-forward</code></td> + <td> + <div id="sampleTabScrollArrowForward" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: tab-scroll-arrow-forward; -webkit-appearance: tab-scroll-arrow-forward; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTabScrollArrowForward",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>textfield</code></td> + <td> + <div id="sampleTextField" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: textfield; -webkit-appearance: textfield; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTextField",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>textfield-multiline</code></td> + <td> + <div id="sampleTextfieldMultiline" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: textfield-multiline; -webkit-appearance: textfield-multiline; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTextfieldMultiline",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>toolbar</code></td> + <td> + <div id="sampleToolbar" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: toolbar; -webkit-appearance: toolbar; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleToolbar",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>toolbarbutton</code></td> + <td> + <div id="sampleToolbarButton" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: toolbarbutton; -webkit-appearance: toolbarbutton; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleToolbarButton",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>toolbarbutton-dropdown</code></td> + <td> + <div id="sampleToolbarButtonDropdown" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: toolbarbutton-dropdown; -webkit-appearance: toolbarbutton-dropdown; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleToolbarButtonDropdown",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>toolbargripper</code></td> + <td> + <div id="sampleToolbarGripper" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: toolbargripper; -webkit-appearance: toolbargripper; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleToolbarGripper",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>toolbox</code></td> + <td> + <div id="sampleToolbox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: toolbox; -webkit-appearance: toolbox; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleToolbox",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>tooltip</code></td> + <td> + <div id="sampleTooltip" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: tooltip; -webkit-appearance: tooltip; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTooltip",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>treeheader</code></td> + <td> + <div id="sampleTreeHeader" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: treeheader; -webkit-appearance: treeheader; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTreeHeader",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>treeheadercell</code></td> + <td> + <div id="sampleTreeHeaderCell" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: treeheadercell; -webkit-appearance: treeheadercell; height:20px; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTreeHeaderCell",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>treeheadersortarrow</code></td> + <td> + <div id="sampleTreeHeaderSortArrow" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: treeheadersortarrow; -webkit-appearance: treeheadersortarrow; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTreeHeaderSortArrow",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>treeitem</code></td> + <td> + <div id="sampleTreeItem" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: treeitem; -webkit-appearance: treeitem; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTreeItem",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>treeline</code></td> + <td> + <div id="sampleTreeLine" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: treeline; -webkit-appearance: treeline; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTreeLine",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>treetwisty</code></td> + <td> + <div id="sampleTreeTwisty" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: treetwisty; -webkit-appearance: treetwisty; color: transparent; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTreeTwisty",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>treetwistyopen</code></td> + <td> + <div id="sampleTreeTwistyOpen" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: treetwistyopen; -webkit-appearance: treetwistyopen; color: transparent; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTreeTwistyOpen",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>treeview</code></td> + <td> + <div id="sampleTreeView" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: treeview; -webkit-appearance: treeview; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleTreeView",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-mac-unified-toolbar</code></td> + <td> + <div id="sampleMacUnifiedToolbar" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-mac-unified-toolbar; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleMacUnifiedToolbar",100,50,"","", "nobutton")}}</td> + <td><strong>Nur Mac OS X</strong>. Dies ermöglicht die Darstellung von Toolbar und Titelleiste unter Verwendung des einheitlichen Toolbarstils, wie er in Anwendungen unter Mac OS X 10.4 und neuer zu sehen ist.</td> + </tr> + <tr> + <td>{{ gecko_minversion_inline("2.0") }} <code>-moz-win-borderless-glass</code></td> + <td> + <div id="sampleWinBorderlessGlass" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-win-borderless-glass; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWinBorderlessGlass",100,50,"","", "nobutton")}}</td> + <td><strong>Nur Windows Vista und neuer</strong>. Dieser Stil wendet den Aero Glass Effekt - aber ohne einen Rahmen - auf das Element an.</td> + </tr> + <tr> + <td><code>-moz-win-browsertabbar-toolbox</code></td> + <td> + <div id="sampleWinBrowsertabbarToolbox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-win-browsertabbar-toolbox; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWinBrowsertabbarToolbox",100,50,"","", "nobutton")}}</td> + <td><strong>Nur Windows Vista und neuer</strong>. Dieser Toolboxstil ist dazu gedacht, um für die Tableiste in einem Browser verwendet zu werden.</td> + </tr> + <tr> + <td><code>-moz-win-communicationstext</code></td> + <td> + <div id="sampleWinCommunicationstext" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-win-communicationstext; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWinCommunicationstext",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-win-communications-toolbox</code></td> + <td> + <div id="sampleWinCommunicationsToolbox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-win-communications-toolbox; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWinCommunicationsToolbox",100,50,"","", "nobutton")}}</td> + <td><strong>Nur Windows Vista und neuer</strong>. Dieser Toolboxstil ist dazu gedacht, in Kommunikations- und Produktivitätsanwendungen verwendet zu werden. Die entsprechende Vordergrundfarbe ist <code>-moz-win-communicationstext</code>.</td> + </tr> + <tr> + <td>{{gecko_minversion_inline("6.0")}} <code>-moz-win-exclude-glass</code></td> + <td> + <div id="sampleWinExcludeGlass" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-win-exclude-glass; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWinExcludeGlass",100,50,"","", "nobutton")}}</td> + <td><strong>Nur Windows Vista und neuer</strong>. Dieser Stil wird dazu verwendet, um den Aero Glass Effekt für das Element auszuschließen.</td> + </tr> + <tr> + <td><code>-moz-win-glass</code></td> + <td> + <div id="sampleWinGlass" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-win-glass; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWinGlass",100,50,"","", "nobutton")}}</td> + <td><strong>Nur Windows Vista und neuer</strong>. Dieser Stil wendet den Aero Glass Effekt auf das Element an.</td> + </tr> + <tr> + <td><code>-moz-win-mediatext</code></td> + <td> + <div id="sampleWinMediaText" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-win-mediatext; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWinMediaText",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-win-media-toolbox</code></td> + <td> + <div id="sampleWinMediaToolbox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-win-media-toolbox; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWinMediaToolbox",100,50,"","", "nobutton")}}</td> + <td><strong>Nur Windows Vista und neuer</strong>. Dieser Toolboxstil ist dazu gedacht, um in Anwendungen verwendet zu werden, die Medienobjekte verwalten. Die Entsprechende Vordergrundfarbe ist <code>-moz-win-mediatext</code>.</td> + </tr> + <tr> + <td><code>-moz-window-button-box</code></td> + <td> + <div id="sampleWindowButtonBox" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-button-box; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowButtonBox",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-button-box-maximized</code></td> + <td> + <div id="sampleWindowButtonBoxMaximized" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-button-box-maximized; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowButtonBoxMaximized",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-button-close</code></td> + <td> + <div id="sampleWindowButtonClose" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-button-close; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowButtonClose",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-button-maximize</code></td> + <td> + <div id="sampleWindowButtonMaximize" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-button-maximize; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowButtonMaximize",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-button-minimize</code></td> + <td> + <div id="sampleWindowButtonMinimize" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-button-minimize; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowButtonMinimize",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-button-restore</code></td> + <td> + <div id="sampleWindowButtonRestore" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-button-restore; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowButtonRestore",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-frame-bottom</code></td> + <td> + <div id="sampleWindowFrameBottom" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-frame-bottom; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowFrameBottom",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-frame-left</code></td> + <td> + <div id="sampleWindowFrameLeft" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-frame-left; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowFrameLeft",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-frame-right</code></td> + <td> + <div id="sampleWindowFrameRight" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-frame-right; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowFrameRight",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-titlebar</code></td> + <td> + <div id="sampleWindowTitlebar" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-titlebar; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowTitlebar",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + <tr> + <td><code>-moz-window-titlebar-maximized</code></td> + <td> + <div id="sampleWindowTitlebarMaximized" style="display: none;"> + <pre class="brush:css"> + div {-moz-appearance: -moz-window-titlebar-maximized; color: black; }</pre> + + <pre class="brush: html"> + <div>Lorem</div></pre> + </div> + {{EmbedLiveSample("sampleWindowTitlebarMaximized",100,50,"","", "nobutton")}}</td> + <td> </td> + </tr> + </tbody> +</table> + +<h2 id="Formale_Syntax">Formale Syntax</h2> + +<pre class="syntaxbox">{{csssyntax}}</pre> + +<h2 id="Beispiele">Beispiele</h2> + +<pre class="brush:css">.exampleone { + -moz-appearance: toolbarbutton; +} +</pre> + +<h2 id="Spezifikationen">Spezifikationen</h2> + +<p>{The <code>appearance</code> property is currently not present in any newer CSS specification.</p> + +<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 (WebKit)</th> + </tr> + <tr> + <td>Grundlegende Unterstützung</td> + <td>1.0</td> + <td>{{CompatGeckoDesktop("1.0")}}{{property_prefix("-moz")}}<sup>[1]</sup></td> + <td>{{CompatNo}}</td> + <td>{{CompatUnknown}}</td> + <td>3.0{{property_prefix("-webkit")}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Grundlegende Unterstützung</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatGeckoMobile("1.0")}}</td> + <td>11.0{{property_prefix("-webkit")}}<sup>[2]</sup></td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<p>[1] Nicht vollständig unterstützt.</p> + +<p>[2] Nur die Werte <code>none</code>, <code>button</code>, und <code>textfield</code> werden unterstützt. Siehe die <a href="https://msdn.microsoft.com/en-us/library/ie/dn793580%28v=vs.85%29.aspx">Dokumentation auf MSDN</a>.</p> + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li><a class="external" href="http://www.w3.org/TR/2004/CR-css3-ui-20040511/#appearance">Definition von <code>appearance</code> in CSS 3 Basic User Interface</a> (Candidate Recommendation vom 2004-05-11), veraltet (Die <code>appearance</code> Eigenschaft wurde in neueren Versionen dieser Spezifikation verworfen.)</li> + <li><a class="external" href="https://wiki.csswg.org/spec/css4-ui#dropped-css3-features">Verworfene CSS3 Features der UI Spezifikation</a></li> +</ul> |