Inheritance
<body>
<h1>Hello inheritance</h1>
<p class="intro">
Let me introduce you to the world of inheritance. It's important to learn.
</p>
<p>
If a child element has not defined a property, it will take that property from it's parent.
</p>
</body>body{
font-family: Georgia, serif;
color: black;
}
h1{
font-family: Helvetica, sans-serif;
}
.intro{
color: #FAA21B;
}Last updated
Was this helpful?