<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: 200px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.