Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Basics (2014) Understanding Values and Units Text Styles

KAMRAN IMRANLI
KAMRAN IMRANLI
4,107 Points

Where are the properties inherited from?

Hello to everyone. In the video, Guil mentions that there are two more values of "font-weight" property, which are lighter and bolder. And on the MDN it is written that they make the text lighter or bolder than the parent element. It is like a relative value. But to what are these values relative? What is the parent element?

2 Answers

Steven Parker
Steven Parker
229,732 Points

When an element is inside another element (which is commonly the case), the one inside is called a "child" element, and the one that surrounds it is known as the "parent" element. For example:

<div class="parent_of_paragraph">
  <p>I'm a child element!</p>
</div>
KAMRAN IMRANLI
KAMRAN IMRANLI
4,107 Points

Steven Parker Thanks for the explanation. But what if an element is not nested inside another element?

Steven Parker
Steven Parker
229,732 Points

All page content will be inside the <body>, and even the body is nested inside the <html> element (which is also known as the "root" element).

Happy coding!