Multiple Inherited Properties

Child elements can inherit several properties at once.

Preview

Code

<style>
.parent{
color:#0ea5e9;
font-family:Verdana;
font-size:18px;
}
</style>

<div class="parent">
<p>Paragraph inherits color, font, and size.</p>
</div>

More CSS Inheritance Examples (8)