...

/

Solution Review: CSS Background and Border Challenge 1

Solution Review: CSS Background and Border Challenge 1

The solution to the challenge of the background and border 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

body {
  font: 1.2em / 1.5 Helvetica Neue;
  padding: 1em 0;
}

The font shorthand property is used where 1.2em is the font-size, 1.5 is the line-height, and the font-family is Helvetica Neue. The padding property is adding 1em space on the top and left ...