From 3f2f7b2ae2c408f618286539a62cb75b8cbb11a4 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 20 Feb 2022 19:25:00 +0900 Subject: CSS のグローバル値の記事を移行 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/inherit/index.html | 85 ------------------------ files/ja/web/css/inherit/index.md | 85 ++++++++++++++++++++++++ files/ja/web/css/initial/index.html | 79 ---------------------- files/ja/web/css/initial/index.md | 79 ++++++++++++++++++++++ files/ja/web/css/unset/index.html | 128 ------------------------------------ files/ja/web/css/unset/index.md | 128 ++++++++++++++++++++++++++++++++++++ 6 files changed, 292 insertions(+), 292 deletions(-) delete mode 100644 files/ja/web/css/inherit/index.html create mode 100644 files/ja/web/css/inherit/index.md delete mode 100644 files/ja/web/css/initial/index.html create mode 100644 files/ja/web/css/initial/index.md delete mode 100644 files/ja/web/css/unset/index.html create mode 100644 files/ja/web/css/unset/index.md diff --git a/files/ja/web/css/inherit/index.html b/files/ja/web/css/inherit/index.html deleted file mode 100644 index 25f700decc..0000000000 --- a/files/ja/web/css/inherit/index.html +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: inherit -slug: Web/CSS/inherit -tags: - - CSS - - CSS カスケードと継承 - - CSS 値 - - Cascade - - Inheritance - - Layout - - Reference - - inherit - - カスケード - - スタイル - - 継承 -translation_of: Web/CSS/inherit ---- -
{{CSSRef}}
- -

inherit は CSS のキーワードで、要素のプロパティの計算値を親要素から取得するよう指定します。 CSS の一括指定 {{cssxref("all")}} を含め、すべての CSS プロパティに適用することができます。

- -

継承プロパティにおいては、既定の動作を推進するものであり、他の規則を上書きする場合にのみ必要です。非継承プロパティにおいては、比較的意味の弱い動作をしますので、 {{cssxref("all")}} プロパティには {{cssxref("initial")}} , {{cssxref("unset")}} などを使用した方が良いかもしれません。

- -

親要素が包含ブロックではなかった場合であっても、常に文書ツリー内の親要素から継承が行われます。

- -

- -
/* 第二レベルのヘッダーを緑色にする */
-h2 { color: green; }
-
-/* ... ただしサイドバーの中にあるものは、親要素の色を使用する */
-#sidebar h2 { color: inherit; }
-
- -

この例の中で、サイドバー内にある h2 要素は異なる色になる可能性があります。例えば、以下の規則に一致する div の子であった場合は ...

- -
div#current { color: blue; }
-
- -

... 青になるでしょう。

- -

仕様書

- - - - - - - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{ SpecName('CSS4 Cascade', '#inherit', 'inherit') }}{{Spec2('CSS4 Cascade')}} Level 3 から変更なし。
{{ SpecName('CSS3 Values', "#common-keywords", "inherit") }}{{ Spec2('CSS3 Values') }} {{ SpecName('CSS2.1') }} から重要な変更なし。
{{ SpecName('CSS2.1', "cascade.html#value-def-inherit", "inherit") }}{{ Spec2('CSS2.1') }}初回定義。
- -

ブラウザーの互換性

- -
-

{{Compat("css.types.global_keywords.inherit")}}

-
- -

関連情報

- - diff --git a/files/ja/web/css/inherit/index.md b/files/ja/web/css/inherit/index.md new file mode 100644 index 0000000000..25f700decc --- /dev/null +++ b/files/ja/web/css/inherit/index.md @@ -0,0 +1,85 @@ +--- +title: inherit +slug: Web/CSS/inherit +tags: + - CSS + - CSS カスケードと継承 + - CSS 値 + - Cascade + - Inheritance + - Layout + - Reference + - inherit + - カスケード + - スタイル + - 継承 +translation_of: Web/CSS/inherit +--- +
{{CSSRef}}
+ +

inherit は CSS のキーワードで、要素のプロパティの計算値を親要素から取得するよう指定します。 CSS の一括指定 {{cssxref("all")}} を含め、すべての CSS プロパティに適用することができます。

+ +

継承プロパティにおいては、既定の動作を推進するものであり、他の規則を上書きする場合にのみ必要です。非継承プロパティにおいては、比較的意味の弱い動作をしますので、 {{cssxref("all")}} プロパティには {{cssxref("initial")}} , {{cssxref("unset")}} などを使用した方が良いかもしれません。

+ +

親要素が包含ブロックではなかった場合であっても、常に文書ツリー内の親要素から継承が行われます。

+ +

+ +
/* 第二レベルのヘッダーを緑色にする */
+h2 { color: green; }
+
+/* ... ただしサイドバーの中にあるものは、親要素の色を使用する */
+#sidebar h2 { color: inherit; }
+
+ +

この例の中で、サイドバー内にある h2 要素は異なる色になる可能性があります。例えば、以下の規則に一致する div の子であった場合は ...

+ +
div#current { color: blue; }
+
+ +

... 青になるでしょう。

+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{ SpecName('CSS4 Cascade', '#inherit', 'inherit') }}{{Spec2('CSS4 Cascade')}} Level 3 から変更なし。
{{ SpecName('CSS3 Values', "#common-keywords", "inherit") }}{{ Spec2('CSS3 Values') }} {{ SpecName('CSS2.1') }} から重要な変更なし。
{{ SpecName('CSS2.1', "cascade.html#value-def-inherit", "inherit") }}{{ Spec2('CSS2.1') }}初回定義。
+ +

ブラウザーの互換性

+ +
+

{{Compat("css.types.global_keywords.inherit")}}

+
+ +

関連情報

+ + diff --git a/files/ja/web/css/initial/index.html b/files/ja/web/css/initial/index.html deleted file mode 100644 index b474d464b1..0000000000 --- a/files/ja/web/css/initial/index.html +++ /dev/null @@ -1,79 +0,0 @@ ---- -title: initial -slug: Web/CSS/initial -tags: - - CSS - - CSS カスケードと継承 - - CSS 値 - - Reference - - initial - - レイアウト - - 初期値 -translation_of: Web/CSS/initial ---- -
{{CSSRef}}
- -

initial は CSS のキーワードで、要素にプロパティの初期値 (または既定値) を設定します。どの CSS プロパティにも適用できます。これは CSS の一括指定 {{cssxref("all")}} を含み、 initial を指定して、すべての CSS プロパティを初期値に戻すために使用することができます。

- -
-

注: 継承プロパティでは、初期値は期待されない値かもしれません。代わりに {{cssxref("inherit")}}, {{cssxref("unset")}}, {{cssxref("revert")}} キーワードを使用することを検討してください。

-
- -

- -

HTML

- -
<p>
-  <span>このテキストは赤です。</span>
-  <em>このテキストは初期値 (ふつうは黒) です。</em>
-  <span>これは再び赤です。</span>
-</p>
- -

CSS

- -
p {
-  color: red;
-}
-
-em {
-  color: initial;
-}
- -

{{EmbedLiveSample('Example')}}

- -

仕様書

- - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{ SpecName('CSS4 Cascade', '#initial', 'initial') }}{{Spec2('CSS4 Cascade')}}Level 3 から変更なし。
{{ SpecName('CSS3 Cascade', '#initial', 'initial') }}{{Spec2('CSS3 Cascade')}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("css.types.global_keywords.initial")}}

- -

関連情報

- - diff --git a/files/ja/web/css/initial/index.md b/files/ja/web/css/initial/index.md new file mode 100644 index 0000000000..b474d464b1 --- /dev/null +++ b/files/ja/web/css/initial/index.md @@ -0,0 +1,79 @@ +--- +title: initial +slug: Web/CSS/initial +tags: + - CSS + - CSS カスケードと継承 + - CSS 値 + - Reference + - initial + - レイアウト + - 初期値 +translation_of: Web/CSS/initial +--- +
{{CSSRef}}
+ +

initial は CSS のキーワードで、要素にプロパティの初期値 (または既定値) を設定します。どの CSS プロパティにも適用できます。これは CSS の一括指定 {{cssxref("all")}} を含み、 initial を指定して、すべての CSS プロパティを初期値に戻すために使用することができます。

+ +
+

注: 継承プロパティでは、初期値は期待されない値かもしれません。代わりに {{cssxref("inherit")}}, {{cssxref("unset")}}, {{cssxref("revert")}} キーワードを使用することを検討してください。

+
+ +

+ +

HTML

+ +
<p>
+  <span>このテキストは赤です。</span>
+  <em>このテキストは初期値 (ふつうは黒) です。</em>
+  <span>これは再び赤です。</span>
+</p>
+ +

CSS

+ +
p {
+  color: red;
+}
+
+em {
+  color: initial;
+}
+ +

{{EmbedLiveSample('Example')}}

+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{ SpecName('CSS4 Cascade', '#initial', 'initial') }}{{Spec2('CSS4 Cascade')}}Level 3 から変更なし。
{{ SpecName('CSS3 Cascade', '#initial', 'initial') }}{{Spec2('CSS3 Cascade')}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("css.types.global_keywords.initial")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/unset/index.html b/files/ja/web/css/unset/index.html deleted file mode 100644 index 492735707c..0000000000 --- a/files/ja/web/css/unset/index.html +++ /dev/null @@ -1,128 +0,0 @@ ---- -title: unset -slug: Web/CSS/unset -tags: - - CSS - - CSS カスケードと継承 - - CSS 値 - - Keyword - - Layout - - Reference - - Style - - unset - - スタイル - - レイアウト -translation_of: Web/CSS/unset ---- -
{{CSSRef}}
- -

unset は CSS のキーワードで、プロパティをリセットし、親から自然に継承された場合は継承値、そうでなければ初期値を設定します。言い換えれば、前者の継承プロパティの場合は {{cssxref("inherit")}} キーワードのように動作し、後者の非継承プロパティの場合は {{cssxref("initial")}} キーワードのように動作します。

- -

unset はあらゆる CSS プロパティに対して、一括指定の {{cssxref("all")}} を含み、適用することができます。

- -

- -

- -

HTML

- -
<p>このテキストは赤です。</p>
-<div class="foo">
-  <p>このテキストも赤です。</p>
-</div>
-<div class="bar">
-  <p>このテキストは緑色 (既定の継承値) です。</p>
-</div>
-
- -

CSS

- -
.foo {
-  color: blue;
-}
-.bar {
-  color: green;
-}
-
-p {
-  color: red;
-}
-.bar p {
-  color: unset;
-}
-
- -

結果

- -

{{ EmbedLiveSample('Color') }}

- -

境界線

- -

HTML

- -
<p>This text has a red border.</p>
-<div>
-  <p>This text has a red border.</p>
-</div>
-<div class="bar">
-  <p>This text has a black border (initial default, not inherited).</p>
-</div>
-
- -

CSS

- -
div {
-  border: 1px solid green;
-}
-
-p {
-  border: 1px solid red;
-}
-
-.bar p {
-  border-color: unset;
-}
-
- -

結果

- -

{{ EmbedLiveSample('Border', 'auto', 200) }}

- -

仕様書

- - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{ SpecName('CSS4 Cascade', '#inherit-initial', 'unset') }}{{ Spec2('CSS4 Cascade') }}Level 3 から変更なし。
{{ SpecName('CSS3 Cascade', '#inherit-initial', 'unset') }}{{ Spec2('CSS3 Cascade') }}初回定義。
- -

ブラウザーの互換性

- -
-

{{Compat("css.types.global_keywords.unset")}}

-
- -

関連情報

- - diff --git a/files/ja/web/css/unset/index.md b/files/ja/web/css/unset/index.md new file mode 100644 index 0000000000..492735707c --- /dev/null +++ b/files/ja/web/css/unset/index.md @@ -0,0 +1,128 @@ +--- +title: unset +slug: Web/CSS/unset +tags: + - CSS + - CSS カスケードと継承 + - CSS 値 + - Keyword + - Layout + - Reference + - Style + - unset + - スタイル + - レイアウト +translation_of: Web/CSS/unset +--- +
{{CSSRef}}
+ +

unset は CSS のキーワードで、プロパティをリセットし、親から自然に継承された場合は継承値、そうでなければ初期値を設定します。言い換えれば、前者の継承プロパティの場合は {{cssxref("inherit")}} キーワードのように動作し、後者の非継承プロパティの場合は {{cssxref("initial")}} キーワードのように動作します。

+ +

unset はあらゆる CSS プロパティに対して、一括指定の {{cssxref("all")}} を含み、適用することができます。

+ +

+ +

+ +

HTML

+ +
<p>このテキストは赤です。</p>
+<div class="foo">
+  <p>このテキストも赤です。</p>
+</div>
+<div class="bar">
+  <p>このテキストは緑色 (既定の継承値) です。</p>
+</div>
+
+ +

CSS

+ +
.foo {
+  color: blue;
+}
+.bar {
+  color: green;
+}
+
+p {
+  color: red;
+}
+.bar p {
+  color: unset;
+}
+
+ +

結果

+ +

{{ EmbedLiveSample('Color') }}

+ +

境界線

+ +

HTML

+ +
<p>This text has a red border.</p>
+<div>
+  <p>This text has a red border.</p>
+</div>
+<div class="bar">
+  <p>This text has a black border (initial default, not inherited).</p>
+</div>
+
+ +

CSS

+ +
div {
+  border: 1px solid green;
+}
+
+p {
+  border: 1px solid red;
+}
+
+.bar p {
+  border-color: unset;
+}
+
+ +

結果

+ +

{{ EmbedLiveSample('Border', 'auto', 200) }}

+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{ SpecName('CSS4 Cascade', '#inherit-initial', 'unset') }}{{ Spec2('CSS4 Cascade') }}Level 3 から変更なし。
{{ SpecName('CSS3 Cascade', '#inherit-initial', 'unset') }}{{ Spec2('CSS3 Cascade') }}初回定義。
+ +

ブラウザーの互換性

+ +
+

{{Compat("css.types.global_keywords.unset")}}

+
+ +

関連情報

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