CSS Position Challenge 1
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 at their assigned places. The width
and height
of big boxes are 50%
and small boxes are 50 pixels. The colors used in the challenge are:
For main boxes:
- #ccc
- #e86f88
- #79badb
- #a2dbb1
For small boxes:
- red
- orange
- steelblue
- coral
- blue
- purple
- gray
Your output should look like this:
Solution review
Let’s have a look at the solution first.
Explanation
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
All the elements must have a border-box
around them so that the padding
and border
are included in an element’s total width and height. The default margin
and padding
of all the elements are set to 0
because we want to ...