<!DOCTYPE html>
<html>
<style>
.aa{
width:300px;
height:auto;
background : red;
transition : width 1s ease;
}
.bb {
width:100px;
height:0;
overflow:hidden;
}
</style>
<body>
<div class="aa">Lorem Ipsum, dizgi ve baskı endüstrisinde kullanılan mıgır metinlerdir. Lorem Ipsum, adı bilinmeyen bir matbaacının bir hurufat numune kitabı oluşturmak üzere bir yazı galerisini alarak karıştırdığı.</div>
</body>
</html>
Here is the codepen link: https://codepen.io/anon/pen/LBmeNK
When I add ".bb" class to the my div element: First I want my width transition to be happened and after width transition I want to my div to have 0px height and overflow hidden.
How can I do that?