css auto heigh div code example
Example: css auto heigh div
/*It's super easy... you just need to set this css atribute*/
.mydiv{
min-height: 100px;
overflow: hidden;
}
/*Other way to do this:*/
.mydiv{
height: auto;
}
/*It's super easy... you just need to set this css atribute*/
.mydiv{
min-height: 100px;
overflow: hidden;
}
/*Other way to do this:*/
.mydiv{
height: auto;
}