From d2866069686a54fb73bd305a21b68a324fa4353d Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Thu, 11 Nov 2021 00:18:37 +0900 Subject: `-moz` 系のプロパティの変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/-moz-orient/index.html | 80 --------------------------------- 1 file changed, 80 deletions(-) delete mode 100644 files/ja/web/css/-moz-orient/index.html (limited to 'files/ja/web/css/-moz-orient/index.html') diff --git a/files/ja/web/css/-moz-orient/index.html b/files/ja/web/css/-moz-orient/index.html deleted file mode 100644 index 361c8e08f9..0000000000 --- a/files/ja/web/css/-moz-orient/index.html +++ /dev/null @@ -1,80 +0,0 @@ ---- -title: '-moz-orient' -slug: Web/CSS/-moz-orient -tags: - - CSS - - CSS プロパティ - - Mozilla 拡張 - - Non-standard - - Reference -translation_of: Web/CSS/-moz-orient ---- -
{{CSSRef}}{{Non-standard_header}}
- -

CSS-moz-orient プロパティは、適用される要素の向きを指定します。

- -

{{cssinfo}}

- -

構文

- -

-moz-orient プロパティは、以下の一覧にあるキーワード値のうちの一つで指定します。

- -

- -
-
inline
-
要素をテキストの軸と同じ方向に描画します。横書きモードでは水平方向に、縦書きモードでは垂直方向に描画します。
-
block
-
要素をテキストの軸と直交するように描画します。横書きモードでは垂直方向に、縦書きモードでは水平方向に描画します。
-
horizontal
-
要素が水平方向に描画される
-
vertical
-
要素が垂直方向に描画される
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<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>
- -

CSS

- -
.vert {
-  -moz-orient: vertical;
-  width: 16px;
-  height: 150px;
-}
- -

結果

- -

{{EmbedLiveSample("Examples","200","360")}}

- -

仕様書

- -

W3C に提出され、最初の反応は肯定的でしたが、このプロパティはまだ仕様書には含まれていません。今のところ、 Mozilla 独自の拡張 (つまり、 -moz-orient) です。

- -

ブラウザーの対応

- - -

{{Compat("css.properties.-moz-orient")}}

- -

関連情報

- - -- cgit v1.2.3-54-g00ecf