
Hover Container
.container {
width: 1800px;
height: 1000px;
background-color: #3498db;
color: white;
text-align: center;
line-height: 50px;
border-radius: 10px;
transition: height 0.3s ease-in-out;
overflow: hidden;
}
.container:hover {
height: 50px;
}
.content {
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
.container:hover .content {
opacity: 1;
}
Hover hier
Uitgebreide inhoud
Uitgebreide inhoud
