From 23d195756261654faf976107f2d102c62a6a411d Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 20 Feb 2022 19:34:08 +0900 Subject: 2022/01/24 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/inherit/index.md | 107 +++++++++++++++----------------------- 1 file changed, 41 insertions(+), 66 deletions(-) diff --git a/files/ja/web/css/inherit/index.md b/files/ja/web/css/inherit/index.md index 25f700decc..91c708cdf3 100644 --- a/files/ja/web/css/inherit/index.md +++ b/files/ja/web/css/inherit/index.md @@ -3,83 +3,58 @@ title: inherit slug: Web/CSS/inherit tags: - CSS - - CSS カスケードと継承 + - CSS カスケード - CSS 値 - - Cascade - - Inheritance - - Layout - - Reference - - inherit - カスケード - - スタイル - 継承 + - キーワード + - レイアウト + - リファレンス + - スタイル + - inherit +browser-compat: css.types.global_keywords.inherit translation_of: Web/CSS/inherit --- -
{{CSSRef}}
+{{CSSRef}} -

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

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

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

+[継承プロパティ](/ja/docs/Web/CSS/inheritance#inherited_properties)においては、既定の動作を推進するものであり、他の規則を上書きする場合にのみ必要です。 -

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

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

+## 例 -
/* 第二レベルのヘッダーを緑色にする */
+### 選択された要素をルールから除外
+
+```css
+/* 第 2 レベルのヘッダーを緑色にする */
 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")}}

-
- -

関連情報

- - +``` + +この例の中で、サイドバー内にある `h2` 要素は異なる色になる可能性があります。例えば、以下のルールに一致する div の子であった場合は ... + +```css +div#current { color: blue; } +``` + +... 青になるでしょう。 + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [継承](/ja/docs/Web/CSS/inheritance) +- {{cssxref("initial")}} を使用すると、プロパティを初期値に設定します。 +- {{cssxref("unset")}} を使用すると、継承プロパティは継承値に、それ以外は初期値に設定します。 +- {{cssxref("revert")}} を使用すると、プロパティをユーザーエージェントのスタイルシート (またはもしあれば、ユーザーのスタイル) で設定された値に初期化します。 +- {{cssxref("all")}} プロパティは、すべてのプロパティを一度に initial, inherit, revert, unset の状態にします。 -- cgit v1.2.3-54-g00ecf