Menu
Fundamentals

CSS Inheritance

How properties trickle down from parents to children.

1Inherited Properties

Properties like color and font-family are inherited by child elements unless overridden.

Example Code
body {
  color: blue;
  font-family: sans-serif;
}
/* p will be blue and sans-serif */
p { }

Finished reading?

Mark this topic as complete to track progress.