-moz-column-span: all; - completely ignored?

Testing in different versions of Firefox new and old seems like columns in CSS3 are completely ignored?

Even a simple demo on quirksmode doesn't work in firefox:

http://www.quirksmode.org/css/multicolumn.html

Has it ever worked? I am having trouble finding anything related online. It should of course work if there is a prefix for the rule ( -moz-column-span

)

Did I miss something?

+3


source to share


3 answers


Here is your link from W3C: column-span

-moz

- Firefox prefix only. Therefore, you will also need to use WebKit and a regular declaration.

It should look something like this:



.pullquote {
    -moz-column-span: 2;
    -webkit-column-span: 2;
    column-span: 2;
}

      

A single column isn't the worst thing as a fallback, but IE users might not be super at it. See for more information at Can I use the site.

0


source


As of today, -moz-column-span and span-span are still not supported by Firefox.



+6


source


No, -moz-column-span

and column-span

Firefox is ignored. Here is the error: https://bugzilla.mozilla.org/show_bug.cgi?id=616436

+2


source







All Articles