Expanding Div with height

PHOTO EMBED

Wed Jan 31 2024 22:53:51 GMT+0000 (Coordinated Universal Time)

Saved by @davidmchale #css #height #animate

.expanding-div {
    width: 200px;
    overflow: hidden;
    max-height: 0; /* Initial max height */
    transition: max-height 0.5s ease; /* Animation transition property */
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.expanding-div:hover {
    max-height: 500px; /* Adjust the max height as needed */
}
content_copyCOPY