From 661f09caec0e7a74d12fe6500c40d28e1afc8777 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Thu, 29 Jul 2021 14:00:39 +0900 Subject: conflicting/Web/CSS/box-ordinal-group を削除 (#1523) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 接頭辞つきの古いバージョンの記事なので削除 --- files/ja/_redirects.txt | 2 +- files/ja/_wikihistory.json | 7 --- .../web/css/box-ordinal-group/index.html | 67 ---------------------- 3 files changed, 1 insertion(+), 75 deletions(-) delete mode 100644 files/ja/conflicting/web/css/box-ordinal-group/index.html (limited to 'files/ja') diff --git a/files/ja/_redirects.txt b/files/ja/_redirects.txt index 7cd783785a..ba3b924afc 100644 --- a/files/ja/_redirects.txt +++ b/files/ja/_redirects.txt @@ -4099,7 +4099,7 @@ /ja/docs/Web/CSS/-moz-border-radius-bottomright /ja/docs/Web/CSS/border-bottom-right-radius /ja/docs/Web/CSS/-moz-border-radius-topleft /ja/docs/Web/CSS/border-top-width /ja/docs/Web/CSS/-moz-border-radius-topright /ja/docs/Web/CSS/border-top-right-radius -/ja/docs/Web/CSS/-moz-box-ordinal-group /ja/docs/conflicting/Web/CSS/box-ordinal-group +/ja/docs/Web/CSS/-moz-box-ordinal-group /ja/docs/Web/CSS/box-ordinal-group /ja/docs/Web/CSS/-moz-cell /ja/docs/Web/CSS/cursor /ja/docs/Web/CSS/-moz-column-width /ja/docs/Web/CSS/column-width /ja/docs/Web/CSS/-moz-context-menu /ja/docs/Web/CSS/cursor diff --git a/files/ja/_wikihistory.json b/files/ja/_wikihistory.json index c46c0eed4f..73bf260491 100644 --- a/files/ja/_wikihistory.json +++ b/files/ja/_wikihistory.json @@ -48374,13 +48374,6 @@ "Marsf" ] }, - "conflicting/Web/CSS/box-ordinal-group": { - "modified": "2019-03-23T22:52:36.740Z", - "contributors": [ - "mfuji09", - "shide55" - ] - }, "conflicting/Web/CSS/float": { "modified": "2019-03-24T00:02:58.592Z", "contributors": [ 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 ---- -

{{CSSRef}}{{warning("これは CSS フレックスボックスレイアウトモジュールの初期の草稿にあったプロパティであり、その後の草稿で置き換えられました。")}}

- -

このプロパティの代わりに何を使用するべきかについての詳細情報は フレックスボックスをご覧ください。

- -

概要

- -

要素が属する序数グループを示します。低い序数グループを持つ要素は、より高い序数を有するものの前に表示されます。

- -

- -

値はゼロより大きい整数でなければなりません。このプロパティの既定値は1です。

- -

- -
<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>
-
-- cgit v1.2.3-54-g00ecf