Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Autoprefixer doesn't just add prefixes, it translates the the syntax to browser compatible code as well, for example:

    a {
        display: flex;
    }
Translates to:

    a {
       display: -webkit-box;
       display: -webkit-flex;
       display: -ms-flexbox;
       display: flex;
    }
It supports the 27 differences between the various browsers.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: