--- title: '-moz-orient' slug: Web/CSS/-moz-orient tags: - CSS - CSS プロパティ - Mozilla 拡張 - Non-standard - Reference translation_of: Web/CSS/-moz-orient ---
CSS の -moz-orient
プロパティは、適用される要素の向きを指定します。
{{cssinfo}}
-moz-orient
プロパティは、以下の一覧にあるキーワード値のうちの一つで指定します。
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("Examples","200","360")}}
W3C に提出され、最初の反応は肯定的でしたが、このプロパティはまだ仕様書には含まれていません。今のところ、 Mozilla 独自の拡張 (つまり、 -moz-orient
) です。
{{Compat("css.properties.-moz-orient")}}