Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

initial

initial CSS 키워드는 속성(property)의 초기값(initial value)을 요소(element)에 적용합니다. 모든 CSS 속성에 허용되고 요소가 속성의 초기값을 사용하도록 합니다.

상속되는 속성에, 초기값은 놀라울 수도 있고 대신에 inherit, unset 또는 revert 키워드 사용을 고려하여야 합니다.

예제

 /* header에 녹색 테두리를 부여 */
 h2 { border: medium solid green }

 /* 하지만 sidebar 내의 header는 "color" 속성의 (초기)값을 사용하게 함 */
 #sidebar h2 { border-color: initial; }
 <p style="color:red">
    this text is red
       <em style="color:initial">
          this text is in the initial color (e.g. black)
       </em>
    this is red again
 </p> 

스펙

스펙 상태 설명
CSS Cascading and Inheritance Level 4
The definition of 'initial' in that specification.
Working Draft Level 3에서 변화 없음.
CSS Cascading and Inheritance Level 3
The definition of 'initial' in that specification.
Candidate Recommendation 초기값이 무엇인지 정의.
CSS Values and Units Module Level 3
The definition of 'initial' in that specification.
Candidate Recommendation 키워드 정의.

브라우저 호환성

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 1.0 3.5 (1.9.1)-moz[1]
19.0 (19.0)
No support 15.0 1.2
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support 1.0 1.0 (1.9.1)-moz[1]
19.0 (19.0)
No support No support (Yes)

[1] Firefox 1.0부터, 각 버전에 추가된 -moz-initial에 대한 지원 증가는, Firefox 3.5 (Gecko 1.9.1) 이후 quotes 지원과 함께 절정에 달합니다. 그 마지막 조각(bit)은 Firefox 3.6 (Gecko 1.9.2)에서 비표준 -moz-border-*-colors 지원이었습니다. 접두어 달린(prefixed) -moz-initial 키워드 지원은 접두어 없는 initial 키워드를 지지하여 Firefox 24에서 제거되었습니다.

참조

문서 태그 및 공헌자

 이 페이지의 공헌자: Netaras
 최종 변경: Netaras,