From 7a2146f7274a5db6e3bffe3bd23547c5a2b57283 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 2 Jan 2022 23:23:59 +0900 Subject: 2021/08/13 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/specified_value/index.md | 94 +++++++++++++------------------ 1 file changed, 38 insertions(+), 56 deletions(-) (limited to 'files/ja') diff --git a/files/ja/web/css/specified_value/index.md b/files/ja/web/css/specified_value/index.md index 81e1552aea..906ac854c6 100644 --- a/files/ja/web/css/specified_value/index.md +++ b/files/ja/web/css/specified_value/index.md @@ -3,38 +3,39 @@ title: 指定値 slug: Web/CSS/specified_value tags: - CSS - - Guide - - Reference + - ガイド + - リファレンス translation_of: Web/CSS/specified_value --- -
{{CSSRef}}
+{{CSSRef}} -

指定値 (specified value) は、 CSS プロパティにおいて文書のスタイルシートから受け取る値です。指定されたプロパティの指定値は、以下の規則に従って決定されます。

+**指定値** (specified value) は、 [CSS](/ja/docs/Web/CSS) プロパティにおいて文書のスタイルシートから受け取る値です。指定されたプロパティの指定値は、以下の規則に従って決定されます。 -
    -
  1. 文書のスタイルシートが明示的にプロパティに値を指定した場合は、その値が使用されます。
  2. -
  3. 文書のスタイルシートが値を指定しなかった場合、可能であれば親要素から値を継承します。
  4. -
  5. 上記のいずれも利用できない場合、要素の初期値が使用されます。
  6. -
+1. 文書のスタイルシートが明示的にプロパティに値を指定した場合は、その値が使用されます。 +2. 文書のスタイルシートが値を指定しなかった場合、可能であれば親要素から値を継承します。 +3. 上記のいずれも利用できない場合、要素の[初期値](/ja/docs/Web/CSS/initial_value)が使用されます。 -

+## 例 -

HTML

+### HTML -
<p>My specified color is given explicitly in the CSS.</p>
+```html
+

ここに指定された色は、 CSS で明示的に与えられています。

-<div>The specified values of all my properties default to their - initial values, because none of them are given in the CSS.</div> +
この要素では、 CSS で何も指定されていないため、 + すべてのプロパティの指定値は既定で初期値になっています。
-<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>
+
+

このフォントファミリーは CSS で明示的に指定されていないため、 + 指定値は親から継承されます。 + ただし、 border は継承されたプロパティではありません。

+
+``` -

CSS

+### CSS -
.fun {
+```css
+.fun {
   border: 1px dotted pink;
   font-family: fantasy;
 }
@@ -42,38 +43,19 @@ translation_of: Web/CSS/specified_value
 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")}}初回定義
- -

関連情報

- - +``` + +### 結果 + +{{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")}} | 初回定義 | + +## 関連情報 + +- {{CSS_key_concepts}} -- cgit v1.2.3-54-g00ecf