Lesson: HTML5 and CSS
Style the HTML Body Element
Now let's start fresh and talk about CSS inheritance.
Every HTML page has a body
element.
We can prove that the body
element exists here by giving it a background-color
of black.
We can do this by adding the following to our style
element:
body {
background-color: black;
}
The content on this page is licensed under Attribution-ShareAlike 4.0 International. Original authors: freeCodeCamp, the content was modified.