In Drupal Zen theme, I noticed that the sidebars and the main divs are all floated to the left with each div's margin-right set back to the 0 position of the page. You can see the demo here. I know that there are many ways to achieve the same result, but I'm just curious about the advantage of using this approach. Why not just have the sidebar-second float to the right? Thanks in advance!
#main {
float: left;
margin-left: 20%;
margin-right: -80%;
width: 60%;
background-color: #eee;
}
#sidebar-first {
float: left;
margin-left: 0;
margin-right: -20%;
width: 20%;
background-color: #FFFF66;
}
#sidebar-second {
float: left;
margin-left: 80%;
margin-right: -100%;
width: 20%;
background-color: #FFFF66;
}