Solution Review: CSS Selectors and Specificity Challenges
The solutions to the challenges of selectors and their specificity are discussed in this lesson.
We'll cover the following...
We'll cover the following...
Solution review: Challenge 1
Let’s have a look at the solution first:
Explanation
body {
border: black 10px solid;
padding: 30px;
}
The border property adds a black 10px solid border around the body. The padding property adds 30 pixels of space on all sides.
div > p:first-of-type {
...