Forum Moderators: not2easy
<div id='wrapper'>
<div id='left'>hi</div>
<div id='content'>hi</div>
<div id='right'>hi</div>
</div>
What can i do to make sure wrapper actually wraps around the child divs?
HTML
<div class="clear">/div>
CSS
.clear {
clear:both;
height:1px;
margin-top:1px;
overflow:hidden;
}
If that's not the case, then you might need :
CSS
#wrapper {position:relative}
I hope this helps.