I have got simple div with this css attached to it
.users_to_c{
height: 500px;
width:400px;
background:rgb(0, 0, 0);
background-image: url("../img/back.jpg");
position: absolute;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
overflow: hidden;
-webkit-transition: 5s;
-moz-transition: 5s;
-ms-transition: 5s;
-o-transition: 5s;
transition: 5s;
&:hover{
overflow: auto;
}
}
Hover part is working it shows overflow,but it works promptly.