diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-11 10:06:29 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2021-11-21 22:37:46 +0900 |
commit | 585cf204c175af495fa25c32d509c7ab9b8c8808 (patch) | |
tree | 7dd98090827dc1210174f6d24a3fed9ba18bfa52 /files/ja/web/css/-moz-orient | |
parent | d2866069686a54fb73bd305a21b68a324fa4353d (diff) | |
download | translated-content-585cf204c175af495fa25c32d509c7ab9b8c8808.tar.gz translated-content-585cf204c175af495fa25c32d509c7ab9b8c8808.tar.bz2 translated-content-585cf204c175af495fa25c32d509c7ab9b8c8808.zip |
Mozilla 独自の CSS プロパティを更新
- 2021/11/09 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/-moz-orient')
-rw-r--r-- | files/ja/web/css/-moz-orient/index.md | 85 |
1 files changed, 44 insertions, 41 deletions
diff --git a/files/ja/web/css/-moz-orient/index.md b/files/ja/web/css/-moz-orient/index.md index 361c8e08f9..b0c67a53cf 100644 --- a/files/ja/web/css/-moz-orient/index.md +++ b/files/ja/web/css/-moz-orient/index.md @@ -5,76 +5,79 @@ tags: - CSS - CSS プロパティ - Mozilla 拡張 - - Non-standard - - Reference + - 標準外 + - リファレンス + - recipe:css-property +browser-compat: css.properties.-moz-orient translation_of: Web/CSS/-moz-orient --- -<div>{{CSSRef}}{{Non-standard_header}}</div> +{{CSSRef}}{{Non-standard_header}} -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>-moz-orient</code></strong> プロパティは、適用される要素の向きを指定します。</p> +**`-moz-orient`** は [CSS](/ja/docs/Web/CSS) のプロパティで、適用される要素の向きを指定します。 -<p>{{cssinfo}}</p> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> +`-moz-orient` プロパティは、以下の一覧にあるキーワード値のうちの一つで指定します。 -<p><code>-moz-orient</code> プロパティは、以下の一覧にあるキーワード値のうちの一つで指定します。</p> +### 値 -<h3 id="Values" name="Values">値</h3> +- `inline` + - : 要素をテキストの軸と同じ方向に描画します。横書きモードでは水平方向に、縦書きモードでは垂直方向に描画します。 +- `block` + - : 要素をテキストの軸と直交するように描画します。横書きモードでは垂直方向に、縦書きモードでは水平方向に描画します。 +- `horizontal` + - : 要素が水平方向に描画される +- `vertical` + - : 要素が垂直方向に描画される -<dl> - <dt><code>inline</code></dt> - <dd>要素をテキストの軸と同じ方向に描画します。横書きモードでは水平方向に、縦書きモードでは垂直方向に描画します。</dd> - <dt><code>block</code></dt> - <dd>要素をテキストの軸と直交するように描画します。横書きモードでは垂直方向に、縦書きモードでは水平方向に描画します。</dd> - <dt><code>horizontal</code></dt> - <dd>要素が水平方向に描画される</dd> - <dt><code>vertical</code></dt> - <dd>要素が垂直方向に描画される</dd> -</dl> +## 公式定義 -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +{{CSSInfo}} + +## 形式文法 {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> +<h2 id="Examples">例</h2> -<h3 id="HTML">HTML</h3> +### HTML -<pre class="brush: html"><p> +```html +<p> The following progress meter is horizontal (the default): -</p> -<progress max="100" value="75"></progress> +</p> +<progress max="100" value="75"></progress> -<p> +<p> The following progress meter is vertical: -</p> -<progress class="vert" max="100" value="75"></progress></pre> +</p> +<progress class="vert" max="100" value="75"></progress> +``` -<h3 id="CSS">CSS</h3> +### CSS -<pre class="brush: css">.vert { +```css +.vert { -moz-orient: vertical; width: 16px; height: 150px; -}</pre> - -<h3 id="Result" name="Result">結果</h3> +} +``` -<p>{{EmbedLiveSample("Examples","200","360")}}</p> +### 結果 -<h2 id="Specifications" name="Specifications">仕様書</h2> +{{EmbedLiveSample("Examples","200","360")}} -<p>W3C に<a href="https://lists.w3.org/Archives/Public/www-style/2014Jun/0396.html">提出</a>され、最初の反応は肯定的でしたが、このプロパティはまだ仕様書には含まれていません。今のところ、 Mozilla 独自の拡張 (つまり、 <code>-moz-orient</code>) です。</p> +## 仕様書 -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +W3C に[提出](https://lists.w3.org/Archives/Public/www-style/2014Jun/0396.html)され、最初の反応は肯定的でしたが、このプロパティはまだ仕様書には含まれていません。今のところ、 Mozilla 独自の拡張 (つまり、 `-moz-orient`) です。 +## ブラウザーの互換性 -<p>{{Compat("css.properties.-moz-orient")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li>{{cssxref("box-orient")}}</li> -</ul> +- {{cssxref("box-orient")}} |