...

/

Solution Review: CSS Text, Color, and Fonts Challenge

Solution Review: CSS Text, Color, and Fonts Challenge

The solution to the challenge of text, color, and font properties is discussed in this lesson.

We'll cover the following...

Solution review

Let’s have a look at the solution first.

  • HTML
  • CSS (SCSS)
html
css

Explanation

html {
  font-size: 10px;
}

We have assigned the 10 pixels font-size to our HTML tag, which is the root element of our page. (We can also use :root selector to assign the custom font-size to our webpage.)

body {
  background-color: coral;
}
...