I was able to get autoprefixer installed and running for SCSS and for most things it works great (flex, transition, box-sizing), however for columns I can't seem to get it to work for any browsers.
I've tried a couple different settings:
<add conditionalExpression="> 1% in US" />
<add conditionalExpression="last 2 versions" />
<add conditionalExpression="Firefox > 20" />
and none seem to be working. Any thoughts on what I can do to get Columns prefixing?
Comments: To confirm then, this prefixer doesn't add prefixes? so if I wrote: ``` .intro { columns: 300px 2; } ``` it wouldn't add the prefixes ``` .intro { -webkit-columns: 300px 2; -moz-columns: 300px 2; columns: 300px 2; } ``` I've tried with >5%, 10% (and several other variations including the default) and in none of the cases does it seem to generate new prefixes. Also, not sure if it would affect your tests, but we're also using the sass compiler
I've tried a couple different settings:
<add conditionalExpression="> 1% in US" />
<add conditionalExpression="last 2 versions" />
<add conditionalExpression="Firefox > 20" />
and none seem to be working. Any thoughts on what I can do to get Columns prefixing?
Comments: To confirm then, this prefixer doesn't add prefixes? so if I wrote: ``` .intro { columns: 300px 2; } ``` it wouldn't add the prefixes ``` .intro { -webkit-columns: 300px 2; -moz-columns: 300px 2; columns: 300px 2; } ``` I've tried with >5%, 10% (and several other variations including the default) and in none of the cases does it seem to generate new prefixes. Also, not sure if it would affect your tests, but we're also using the sass compiler