#main .inside .ce_text {
-moz-column-count: 2;
-moz-column-gap: 31px;
-webkit-column-count: 2;
-webkit-column-gap: 31px;
column-count: 2;
column-gap: 31px;
}
#main .inside .ce_tabcontrol_pane .ce_text {
-moz-column-count: 0;
-webkit-column-count: 0;
column-count: 0;
}
the second rule should be more important than the first one imo. Although chrome renders 2 columns (!important also doesn’t help).
But: Safari is doing everthing correct. Why?
Chrome 24
Safari 6.0.2
According to MDN
0is no valid input forcolumn-count.I think, what you mean is more like this:
Example Fiddle working in Chrome26 as well as Firefox19.