--- title: 指定値 slug: Web/CSS/specified_value tags: - CSS - Guide - Reference translation_of: Web/CSS/specified_value ---
指定値は、 CSS プロパティにおいて文書のスタイルシートから受け取る値です。指定されたプロパティの指定値は、以下の規則に従って決定されます。
<p>My specified color is given explicitly in the CSS.</p> <div>The specified values of all my properties default to their initial values, because none of them are given in the CSS.</div> <div class="fun"> <p>The specified value of my font family is not given explicitly in the CSS, so it is inherited from my parent. However, the border is not an inheriting property.</p> </div>
.fun { border: 1px dotted pink; font-family: fantasy; } p { color: green; }
{{EmbedLiveSample("Examples", 500, 220)}}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("CSS2.2", "cascade.html#specified-value", "cascaded value")}} | {{Spec2("CSS2.2")}} | |
{{SpecName("CSS2.1", "cascade.html#specified-value", "cascaded value")}} | {{Spec2("CSS2.1")}} | 初回定義 |