aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/ja/_redirects.txt2
-rw-r--r--files/ja/_wikihistory.json7
-rw-r--r--files/ja/conflicting/web/css/box-ordinal-group/index.html67
3 files changed, 1 insertions, 75 deletions
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
----
-<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">&lt;style type="text/css"&gt;
- #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;
- }
-&lt;/style&gt;
-
-&lt;div id="Flexbox"&gt;
- &lt;div id="text1"&gt;text 1&lt;/div&gt;
- &lt;div id="text2"&gt;text 2&lt;/div&gt;
- &lt;div id="text3"&gt;text 3&lt;/div&gt;
- &lt;div id="text4"&gt;text 4&lt;/div&gt;
-&lt;/div&gt;
-</pre>