Forum Moderators: not2easy
#container {
display: table;
width: 100%;
}
#sidebar {
display: table-cell;
width: 200px;
}
#main {
display: table-cell;
} <div id=container>
<div id=sidebar></div>
<div id=main></div>
</div>
Good ol' tables are often easier to manage and more predictable than floats or positioning.And by using the
position:absolute;needed to be removed. The positioning is done by the
top:63px;
left:100px;