So I have a 2 column layout, which structured something like this:
html structure:
#container
#content
#side-a
.janitor
css:
#container{ width: 501px; }
#content {
float: left;
width: 300px;
border-right: 1px solid black;
}
#side-a{
float: right;
width: 200px;
}
.janitor {clear: both; }
When there is no border everything is fine, but when I add it, layout collapses on zooming out.