Whats in this Video
- Adding grid section
- Adding class to box and content
- Adding CSS to hide content and show content on hover
- Responsive layout
CSS Code
.content{
transform: translateY(250px);
opacity: 0;
}
.hoverbox:hover .content{
transform: translateY(0px);
opacity: 1;
transition: 0.8s;
}