Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSAMUEL LAWRENCE
Courses Plus Student 8,447 Pointscolumn span not working for me on Firefox
Hi for some reason the "-moz-column-span" property isn't working for me on Firefox. Is this particular syntax different from the others. I know that some of the vendor prefixes work and others don't , but I tried both "column-span" unprefixed and "-moz-column-span" prefixed versions, nothing works. Help! thanks. Guil Hernandez
1 Answer
Frank Friberg
7,704 PointsColumn properties is still an experimental feature, hence the -moz- prefix, and has some bugs. A tip is to use this website www.caniuse.com and see if something is supported and how well it is supported. I found this after searching for columns:
From caniuse.com:
In Firefox, the property column-span (or -moz-column-span) does not yet work. See the bug.
SAMUEL LAWRENCE
Courses Plus Student 8,447 PointsSAMUEL LAWRENCE
Courses Plus Student 8,447 Pointshi Frank Friberg thanks that was very helpful.