Stretch Liquid Container Along With Floated Contents
basically, i want the container to stretch vertically along with the contents inside id=content. i cant seem to figure out how, even putting height:100% value for the id=container
Solution 1:
Try this it should work
#container {
width: 400px;
min-height:100px;
height:auto;
overflow:hidden;
margin:auto;
background:#ccc;
}
Hope this helps :D
Post a Comment for "Stretch Liquid Container Along With Floated Contents"