<div id="container">
<div class="box"></div>
</div>
.box{
width:100px;
height:100px;
border:1px solid #000;
transition-property:height;
transition-duration:2s;
margin:0 auto;
}
.box:hover{
width:200px;
height:200px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.