Skip to main content

What does the inherit keyword do?

inherit forces a property to explicitly inherit its value from the parent, even if that property is not inherited by default.

Example:

css
p { color: red; } span { color: inherit; }

In this case, span takes its color from its parent (p), even though it could have had its own value.

Short Answer

Interview ready
Premium

A concise answer to help you respond confidently on this topic during an interview.