> Is there some way to make the width of those columns predictable > without adding a non-auto width to the div?
It depends on how predictable you'd like. From my experimenting, it created columns with a min-width of 380px, and a max-width of (presumably) 759px. (How many 380px columns fit in 700px? 2. So make 2 equal width columns to fit the available space.) So the width of a column should be: columnCount = int(clientWidth/380); columnWidth = ( clientWidth - (columnCount-1)*40 )/columnCount; ---Tim ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
