nDmitry / grunt-autoprefixer

Parse CSS and add vendor-prefixed CSS properties using the Can I Use database. Based on Autoprefixer.
MIT License
795 stars 60 forks source link

IE 10 flexbox syntax #21

Closed lmartins closed 10 years ago

lmartins commented 10 years ago

I've noticed that the task won't add the IE10 specific flexbox syntax, despite being configured to do so.

According to Autoprefix readme examples this should be possible:


Just code by latest W3C specs and Autoprefixer will produce the code for old browsers:

a {
    display: flex;
}
compiles to:

a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}
nDmitry commented 10 years ago

Can't reproduce, please show your config.

lmartins commented 10 years ago

You're right actually. Not sure what triggered it before but it is now working as expected.

Thanks.