Closed Serranya closed 6 years ago
I have an scss file like this:
@charset "UTF-8"; pre { tab-size: 3; }
output:
pre { tab-size: 3; }
expected:
pre { tab-size: 3; -o-tab-size: 3; -moz-tab-size: 3; }
Tab size needs the -moz or the -o prefix to work in FireFox/Opera. But the property is emitted as is.
-moz
-o
sass -v Ruby Sass 3.5.6
Copy of https://github.com/sass/sass/issues/2560
Sass doesn't do automatic vendor prefixing. I suggest using a tool like Autoprefixer to post-process your CSS.
Oh sorry. Seems like I mixed up some things
I have an scss file like this:
output:
expected:
Tab size needs the
-moz
or the-o
prefix to work in FireFox/Opera. But the property is emitted as is.Copy of https://github.com/sass/sass/issues/2560