CSS Tips
Expand Container Divs
Often I have problems with css for floating divs in a container div. The following link suggests using overflow:auto and width:100% to expand the container div.
1 2 3 4 5 | div.container { border: 1px solid #000000; overflow: auto; width: 100% } |