sass / ruby-sass

The original, now deprecated Ruby implementation of Sass
https://sass-lang.com
MIT License
183 stars 38 forks source link

Missing vendor prefixes for tab-size #78

Closed Serranya closed 6 years ago

Serranya commented 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.

sass -v
Ruby Sass 3.5.6

Copy of https://github.com/sass/sass/issues/2560

nex3 commented 6 years ago

Sass doesn't do automatic vendor prefixing. I suggest using a tool like Autoprefixer to post-process your CSS.

Serranya commented 6 years ago

Oh sorry. Seems like I mixed up some things