...

/

CSS Position Challenge 2

CSS Position Challenge 2

Solve these challenges related to the CSS position property to evaluate yourself in this lesson.

We'll cover the following...

Challenge

Add CSS properties to the given divs to position them in their assigned places. The width and height of boxes are 150 pixels. The color used is:

  • steelblue

Your output should look like this:

  • HTML
  • CSS (SCSS)
html
css

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;
}

The font shorthand property is used where 1.2em is the font-size ...