For my webpage I want to set up columns (boxes). For example I have an image floating to the left then I want to float another image or a plain box underneath the image.
This is my HTML code
<div style="float: left; background-color: white;">
<img src="Images/Books.jpg" alt="Books" width="225" height="125"/>
</div>
<div id="left-col">some text</div>
My image is floating left and I want my left column to float underneath it. I tried using the <br> tag but if I want to include a center column the <br> would not work...
This is my CSS code
#left-col
{
position: ;
float: left;
height: 300px;
width:225px;
background-color: white;
margin-bottom: 10px;
}