Best way would be to
float:left
all the boxes then put
Clear:both
On box number 3 by using a class for example, I've also put a newLine on
box 1 to be safe
Eg:
CSS:
#box {
width:150px;
float:left;
}
#box.newLine{
clear:both;
}
XHTML:
Line1
Line1
Line1
You need to style the to get rid of the default margins etc.
Setting margin: auto 0; effectively centres the block although IE is
buggy about this so will not do it...
Also, as far as the page goes, I'd be using tags and tags to
style the content of the page.
Hope that helps...
Alun
CODE Ch