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:
Solution review
Let’s have a look at the solution first.
Explanation
body {
font: 1.2em / 1.5 Helvetica Neue;
}
The font
shorthand property is used where 1.2em
is the font-size
...