inherit property CSS Reference



Definition and Usage

The inherit value is allowed on every CSS property. It causes the element for which it is specified to take the Computed Value of the property from its parent element.

For inherited properties

For inherited properties, this reinforces the default behavior, and is only needed to override another rule. For example:

 /* make second-level headers green */
 h2 { color: green; }
 /* ...but leave those in the sidebar alone so they use their parent's color */
 #sidebar h2 { color: inherit; }

Note that in this example the h2 elements inside the sidebar might be different colors. For example, if one of them were the child of a div matched by the rule

 div#current { color: blue; }

it would be blue.

For non-inherited properties

For non-inherited properties, this specifies a behavior that typically makes relatively little sense.


Examples

No examples


Compatibility

Browser Lowest Version
Internet Explorer 8.0
Firefox (Gecko) 1.0 (1.0)
Opera 4.0-7.0
Safari (WebKit) 1.0 (85)

Relative articles