Reputation: 323
Testing in various versions of Firefox new and old it seems that column-span in CSS3 is ignored completely?
Even the simple demo on quirksmode fails in firefox:
http://www.quirksmode.org/css/multicolumn.html
Has this ever worked? I'm having trouble finding anything related online. Surely it should work if there is a prefix for the rule (-moz-column-span
)
Am I missing something?
Upvotes: 4
Views: 6086
Reputation: 721
CSS column-span is shipped in Firefox 71. https://hacks.mozilla.org/2019/12/firefox-71-a-year-end-arrival/
Upvotes: 1
Reputation: 195
Here is your reference from the W3C: column-span
-moz
is only the Firefox prefix. So you will need use the WebKit and regular declaration as well.
It should look something like this:
.pullquote {
-moz-column-span: 2;
-webkit-column-span: 2;
column-span: 2;
}
Single Column is not the worst thing as a fallback, but IE users might not be super into this. See more info at the Can I Use website.
Upvotes: -1
Reputation: 69
No, -moz-column-span
and column-span
are ignored by Firefox. Here is the bug: https://bugzilla.mozilla.org/show_bug.cgi?id=616436
Upvotes: 6
Reputation: 384
As of today, -moz-column-span and column-span are still not supported by Firefox.
Upvotes: 7