[WSG] Lineup divs without using left and right?

2004-11-30 Thread mike bailey
Aloha, I am currently messing around, and writing a simple template, and was wondering if there is a way to lineup 5 divs on a single line without using the left and right css properties. The template i'm messing around with is here: http://oxiserve.com/misc/test/ . Thanks in advance. Love,

Re: [WSG] Lineup divs without using left and right?

2004-11-30 Thread Mordechai Peller
mike bailey wrote: I am currently messing around, and writing a simple template, and was wondering if there is a way to lineup 5 divs on a single line without using the left and right css properties. In other words, you don't want to use absolute positioning. How's about: .fiveInRow { float :

Re: [WSG] Lineup divs without using left and right?

2004-11-30 Thread Patrick H. Lauke
Mordechai Peller wrote: A possible problem you need to be aware of is that sometimes IE doesn't seem to add correctly and: 20% + 20% + 20% + 20% + 20% 100% remember that the above is also true for other browsers if margin, padding and border are anything but zero (in the correct box model) --

Re: [WSG] Lineup divs without using left and right?

2004-11-30 Thread Mordechai Peller
Patrick H. Lauke wrote: remember that the above is also true for other browsers if margin, padding and border are anything but zero (in the correct box model) In Firefox, last I checked, 5x(1%+18%+1%) will equal 100%, so margins, etc, aren't a problem if you account for them.