[tw] Re: [TW5] populating a table

2015-03-07 Thread Jon
Hi Odder, thanks, but when I tried: .threecolumns { display:block; column-count:3; -moz-column-count:3; -moz-column-width:33%; } I can change the number of columns but adjusting the % width didn't appear to make any difference. Regards Jon On Saturday, 7 March 2015 08:51:53 UTC, Odder

[tw] Re: [TW5] populating a table

2015-03-07 Thread Odder
Hi Jon, this is new for me too, because I have only needed fixed width columns. A more flexible method is to use only column-width and not column-count. Then the column number is flexible to the window width (look here: https://css-tricks.com/almanac/properties/c/column-width) but values must

[tw] Re: [TW5] populating a table

2015-03-07 Thread Odder
Hi Jon, to alter the spacing between the columns you have give them a width. In your example you have to add the following css to your code: -moz-column-width:33% -webkit-column-width:33% or whatever you want for the width. For 3 columns with 33% you have equal distance between the

[tw] Re: [TW5] populating a table

2015-03-07 Thread Jon
Hi Odder, thanks for the info. Regards Jon On Saturday, 7 March 2015 12:13:46 UTC, Odder wrote: Hi Jon, this is new for me too, because I have only needed fixed width columns. A more flexible method is to use only column-width and not column-count. Then the column number is flexible to