initial property CSS Reference



Definition and Usage

The initial CSS keyword applies the initial value of a property to an element. It is allowed on every CSS property and causes the element for which it is specified to use the initial value of the property.


Examples

 /* give headers a green border */
 h2 { border: medium solid green }
 /* but make those in the sidebar use the value of the "color" property */
 #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> 

Compatibility

Desktop browsers

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support1.0(3.5)-moz
19.0 (19.0)
Not supportedNot supported1.2(125)

Mobile browsers

FeatureAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Basic support1.03.0 (3.0)-moz
169.0 (169.0)
Not supportedNot supported(Yes)

Relative articles