aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/computed_value/index.html
blob: f08509b8d0052e0cd6f097db5072fe5bcf8ce3eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
title: 計算値
slug: Web/CSS/computed_value
tags:
  - CSS
  - Guide
  - Reference
  - リファレンス
translation_of: Web/CSS/computed_value
---
<div>{{cssref}}</div>

<p><span class="seoSummary"><a href="/ja/docs/Web/CSS">CSS</a> の プロパティの<ruby><strong>計算値</strong><rp> (</rp><rt>computed value</rt><rp>) </rp></ruby>は、継承の過程で親から子へ伝えられる値です。</span>これは<a href="/ja/docs/Web/CSS/specified_value">指定値</a>から計算されます。</p>

<ol>
 <li>特殊な値である {{cssxref("inherit")}}, {{cssxref("initial")}}, {{cssxref("unset")}}, {{cssxref("revert")}} を扱います。</li>
 <li>プロパティの概要の「計算値」に記載された値に達するのに必要な計算を行います。</li>
</ol>

<p>プロパティの計算値に達するのに必要な計算は、一般に (<code>em</code> の単位やパーセントなどの) 相対値を絶対値に変換する計算を含みます。例えば、ある要素に <code>font-size: 16px</code><code>padding-top: 2em</code> が指定された場合、 <code>padding-top</code> の計算値は <code>32px</code> (フォントサイズの倍) になります。</p>

<p>しかしながら、いくつかのプロパティ (<code>width</code>, <code>margin-right</code>, <code>text-indent</code>, <code>top</code> など、レイアウトの定義に必要ものに対する割合が相対的なもの) でパーセント指定された値はパーセント計算された値に変わります。さらに、 <code>line-height</code> に指定された単位なしの値は、指定された計算値になります。これらの計算値に残った相対的な値は、<a href="/ja/docs/Web/CSS/used_value">使用値</a>が定義された場合、絶対値になります。</p>

<div class="note">
<p><strong>注:</strong> DOM の {{domxref("Window.getComputedStyle", "getComputedStyle()")}} API は<a href="/ja/docs/Web/CSS/resolved_value">解決値</a>を返しますが、これはプロパティによって<a href="/ja/docs/Web/CSS/computed_value">計算値</a>であるか<a href="/ja/docs/Web/CSS/used_value">使用値</a>であるかが変わります。</p>
</div>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("CSS2.2", "cascade.html#computed-value", "computed-value")}}</td>
   <td>{{Spec2("CSS2.2")}}</td>
   <td>
    <p>変更なし</p>
   </td>
  </tr>
  <tr>
   <td>{{SpecName("CSS2.1", "cascade.html#computed-value", "computed value")}}</td>
   <td>{{Spec2("CSS2.1")}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{domxref("window.getComputedStyle")}}</li>
 <li>{{CSS_key_concepts}}</li>
</ul>