--- title: '-moz-orient' slug: Web/CSS/-moz-orient tags: - CSS - CSS Referenz - Non-standard translation_of: Web/CSS/-moz-orient ---
Die -moz-orient
CSS Eigenschaft bestimmt die Orientierung des Elements, auf das sie angewendet wird.
{{cssinfo}}
inline
block
horizontal
vertical
<p> The following progress meter is horizontal (the default): </p> <progress max="100" value="75"></progress> <p> The following progress meter is vertical: </p> <progress class="vert" max="100" value="75"></progress>
.vert { -moz-orient: vertical; width: 16px; height: 150px; }
{{EmbedLiveSample("Beispiele","200","360")}}
Obwohl für das W3C mit anfänglichem positivem Feedback eingereicht, ist diese Eigenschaft noch nicht Teil einer Spezifikation; aktuell ist sie daher eine Mozilla spezifische Erweiterung (d. h. -moz-orient
).