CSS: Boxes and horizontal scrollbar
Posted: Mon Oct 13, 2003 7:30 pm
Say you have two div boxes, one floated left, the other floated right.
Box1
Box2
And then say you have many paragraphs in Box1; when a person views the page with a resolution of 800x600 (or maybe even a bit larger) Box2 drops below Box1. Anyone know how to set things up so that Box2 will always be to the left of Box1 without having a horizontal scrollbar appear when the browser window is maximized?
I might not know what I am talking about, if you think that is the case then please speak up so I don't go making a fool of myself to other people
Box1
Code: Select all
#box1 {
float: left;
}Code: Select all
#box2 {
float: right;
width: 300px;
}I might not know what I am talking about, if you think that is the case then please speak up so I don't go making a fool of myself to other people