Newspaper columns.

  • Thread starter Thread starter Mufasa
  • Start date Start date
M

Mufasa

I have a list of items that I'd like to have wrap like columns in a
newspaper. So that as I add items, it would be in two columns and things
would wrap appropriately. So if there were 11 items, it would be 6 in 1
column, 5 in another. If there are 18 items, it would be 9 and 9.

Any suggestions/thoughts?

TIA - Jeff.
 
for safari and firefox you can use a CSS style command.

<div style="-webkit-column-count:2;-moz-column-count:2;column-count:2;">
my text ....
</div>

out of luck with IE . you can do it with some javascript.

-- bruce (sqlwork.com)
 
Forget about using CSS. Its ridiculous. What you want is another page model
besides HTML and that would be WPF/Silverlight. If you look around you'll
find a newspaper columns are quite easy to do using flow properties which
are not supported by HTML/CSS.
 
Back
Top