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 : left;
  width : 20%;
}

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%
******************************************************
The discussion list for http://webstandardsgroup.org/


See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************



Reply via email to