diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-07-29 14:00:39 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 14:00:39 +0900 |
commit | 661f09caec0e7a74d12fe6500c40d28e1afc8777 (patch) | |
tree | 0d2587c5ce4b4b5e77c12e11723a6c690d0ded35 /files/ja/conflicting/web | |
parent | cc784b6bbe3f2caf5a5ac15d740715eb8228514f (diff) | |
download | translated-content-661f09caec0e7a74d12fe6500c40d28e1afc8777.tar.gz translated-content-661f09caec0e7a74d12fe6500c40d28e1afc8777.tar.bz2 translated-content-661f09caec0e7a74d12fe6500c40d28e1afc8777.zip |
conflicting/Web/CSS/box-ordinal-group を削除 (#1523)
接頭辞つきの古いバージョンの記事なので削除
Diffstat (limited to 'files/ja/conflicting/web')
-rw-r--r-- | files/ja/conflicting/web/css/box-ordinal-group/index.html | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/files/ja/conflicting/web/css/box-ordinal-group/index.html b/files/ja/conflicting/web/css/box-ordinal-group/index.html deleted file mode 100644 index 121d6ea03f..0000000000 --- a/files/ja/conflicting/web/css/box-ordinal-group/index.html +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: '-moz-box-ordinal-group' -slug: conflicting/Web/CSS/box-ordinal-group -tags: - - CSS - - Mozilla 拡張 - - Non-standard - - Reference - - フレックスボックス -translation_of: Web/CSS/box-ordinal-group -translation_of_original: Web/CSS/-moz-box-ordinal-group -original_slug: Web/CSS/-moz-box-ordinal-group ---- -<p>{{CSSRef}}{{warning("これは CSS フレックスボックスレイアウトモジュールの初期の草稿にあったプロパティであり、その後の草稿で置き換えられました。")}}</p> - -<p>このプロパティの代わりに何を使用するべきかについての詳細情報は <a href="/ja/docs/Web/CSS/CSS_Flexible_Box_Layout/Using_CSS_flexible_boxes">フレックスボックス</a>をご覧ください。</p> - -<h2 id="Summary" name="Summary">概要</h2> - -<p>要素が属する序数グループを示します。低い序数グループを持つ要素は、より高い序数を有するものの前に表示されます。</p> - -<h2 id="Values" name="Values">値</h2> - -<p>値はゼロより大きい整数でなければなりません。このプロパティの既定値は1です。</p> - -<h2 id="Examples" name="Examples">例</h2> - -<pre class="brush: html"><style type="text/css"> - #Flexbox { - display: -ms-box; - display: -moz-box; - display: -webkit-box; - } - - #text1 { - background: red; - -ms-box-ordinal-group: 4; - -moz-box-ordinal-group: 4; - -webkit-box-ordinal-group: 4; - } - - #text2 { - background: green; - -ms-box-ordinal-group: 3; - -moz-box-ordinal-group: 3; - -webkit-box-ordinal-group: 3; - } - - #text3 { - background: blue; - -ms-box-ordinal-group: 2; - -moz-box-ordinal-group: 2; - -webkit-box-ordinal-group: 2; - } - - #text4 { - background: orange; - } -</style> - -<div id="Flexbox"> - <div id="text1">text 1</div> - <div id="text2">text 2</div> - <div id="text3">text 3</div> - <div id="text4">text 4</div> -</div> -</pre> |