There is a content that is spread across several columns using CSS3 columns that work quite well in Firefox and Webkit, Opeara.
The problem is that column breaks with css are implemented only in webkit (webkit-column-break-before) and not in other browsers.
What would be the better way to implement the breaks.
The height of the column is fixed.
I can think of adding block element with height equal height of the column.
Would be grateful for ideas.
Thanks.
Without seeing any code or what you are working on, perhaps the
column-count,column-gapand thecolumn-ruleproperties might work.If this is related specifically to the breaks and not the columns, have a look at using
break-inside: avoid-column;and-webkit-column-break-inside: avoid;or usedisplay: inline-block;on child elements, preventing them being split between columns.