Skip to content

⒍ Autoprefixer

littledu edited this page Feb 29, 2016 · 3 revisions

tmt-workflow 集成了 自动补全 功能,代码里只需按标准来写即可。

如下代码:

a {
    display: flex;
}

编译为:

a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

更详细的了解请点击: https://github.com/postcss/autoprefixer

OVER!!!

Clone this wiki locally