--- title: 지정값 slug: Web/CSS/specified_value tags: - CSS - CSS Reference translation_of: Web/CSS/specified_value ---
CSS 속성의 지정값은 세 가지 방법 중 하나로 설정됩니다.
green 으로 설정된 경우 대응하는 요소(element)의 텍스트 색은 녹색이 됩니다.font 속성값이 "Arial", {{HTMLElement("p")}}가 정의된 font 속성이 없다면 Arial font가 상속됩니다.<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("예제", 500, 220)}}
| 명세 | 상태 | 설명 |
|---|---|---|
| {{SpecName("CSS2.1", "cascade.html#specified-value", "cascaded value")}} | {{Spec2("CSS2.1")}} | 초기 정의 |