Solution Review: CSS Position Challenge 3
Solve this challenge related to creating the image gallery for the CSS position property to evaluate yourself in this lesson.
We'll cover the following...
Solution review
Let’s have look at the solution first:
Explanation
.gallerycontainer {
position: relative;
}
We used position: relative;
to customize the current position of the small thumbnails images.
.small-image {
width: 100px;
height: 75px;
border: 0;
}
To create a small images gallery, we fix the height and width of the icons to have ...