Solution Review: CSS Background and Border Challenge 2
The solution to the challenge of creating a progress bar using 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:
Explanation
.outer-bar {
top: 50px;
height: 30px;
position: relative;
background: #333;
border-radius: 50px;
padding: 10px;
}
We have used top: 50px;
to push the ...