Answers for "div width height auto"

CSS
1

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;
}
Posted by: Guest on June-09-2021

Code answers related to "div width height auto"

Browse Popular Code Answers by Language