Forum Moderators: not2easy
float: left value, I get something like this:
######### #########
# box 1 # # box 2 #
######### # ..... #
......... # ..... #
......... #########
######### #########
# box 3 # # box 4 #
# ..... # # ..... #
######### #########
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<style type="text/css">
#container {
width:780px;
margin:auto;
overflow:hidden;
background-color:#ccc;
}
#left,#right {
float:left;
width:390px;
}
#box1 {
height:30px;
background-color:#fcc;
}
#box2 {
height:80px;
background-color:#cfc;
}
#box3 {
height:70px;
background-color:#ccf;
}
#box4 {
height:60px;
background-color:#ffc;
}
#box5 {
height:100px;
background-color:#cff;
}
#box6 {
height:80px;
background-color:#fcf;
}
</style>
</head>
<body>
<div id="container">
<div id="left">
<div id="box1">box one</div>
<div id="box3">box three</div>
<div id="box5">box five</div>
</div><!-- end #left -->
<div id="right">
<div id="box2">box two</div>
<div id="box4">box four</div>
<div id="box6">box five</div>
</div><!-- end #right -->
</div><!-- end #container -->
</body>
</html>
<div id="sidebar">
<ul>
<li class="widget"></li>
<li class="widget"></li>
<li class="widget"></li>
<li class="widget"></li>
</div>
That would work fine if I really had any control of the HTML