Forum Moderators: not2easy
<div id="container">
<div id="news"></div>
<div id="sidebar"></div>
</div>
body {
margin: 0;
padding: 0;
}
#container {
width: 100%;
height: 100%;
}
#news {
background-color: #fff;
float: left;
width: 68%;
border-right: 1px solid %000;
}
#sidebar {
background: #DDDDDD;
float: right;
width: 32%;
color: #1E3C3C;
font-family: Arial, Helvetica, sans-serif;
line-height: 18px;
}
the border is part of the design
This is more of a "designer" answer than a "coder" answer, but you might want to consider making the border part of a background image tiled vertically down one or the other column. This way you can just have straight widths with no box model problems, but still get your visual effect.
cEM