<div class="btn">
This is a test - CSS transition with auto property
</div>
.btn{
height:100px;
transition: all 1s;
background-color: pink;
width:100%;
}
.btn:hover{
height: auto;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.