do you guys know how i can make divs stack at low resolution.
eg (1024X768): The divs are side by side ¦div1¦ ¦div2¦
(800X600): div1 goes under div2 ¦div1¦ ¦div2¦
swa66
9:03 am on Oct 14, 2008 (gmt 0)
the simple way to do this would be to make the divs floats, and give them a width of let's say 500px. when the window (not the display) gets to small for both to fit side-by-sie the second one will go below the first one.
Of course you could add a third to the mix and also let it play along in the same manner should the display be 1920px wide. But few users of high res screens will let the browser take up all of the screen in my experience.
muximus
9:57 am on Oct 14, 2008 (gmt 0)
Thanks for the reply, do you think there is anyway of doing it with fluid widths and not fixed widths(like making the divs 500px)