How would I setup a div to be 100% of the parent div if it is floating?
Here are the two styles I've got, where sidebar is the child of container -
#container {
width:1200px;
margin-top:40px;
overflow:hidden;
text-align:center;
}
#sidebar {
width:260px;
float:left;
overflow:hidden;
height:1554px;
}