I am having an issue and it's driving me nuts. I want a banner to span the top of the browser window, regardless of how wide the browser is. I have a b_left.png (282x92px) that I want in the upper left and b_right.png (247x92px) that I want on the opposite end. I have a b_filler.png (1x92px) that I want to use as a background image for the middle filler piece. This is what I have so far:
<div style='height: 92px; width: 100%;'>
<div style='height: 92px; width: 282px; float: left;'>
<img style='width: 282px; height: 92px;' src='b_left.png'>
</div>
<div style='height: 92px; float: left; background-image: url(b_filler.png);'>
</div>
<div style='height: 92px; width: 247px; float: right;'>
<img style='width: 247px; height: 92px;' src='b_right.png'>
</div>
</div>
The left and right imgs go where they need, but no background fills the center. If I remove float: left, the background fills but then the right image drops down below the height of the left/middle, augh!
What am I doing wrong? :)