哪些css样式的属性应该加上浏览器的前缀?


查看 CSS3的box-sizing属性是发现它加上了浏览器的前缀。


 div
{
box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Safari */
width:50%;
float:left;
}

那么究竟哪些属性要加上浏览器的前缀呢?

浏览器 css

★开心熊猫★ 11 years, 6 months ago

事实上,完全不需要自己考虑浏览器的prefix问题,因为已经有多个工具可以代替人工完成这个坑爹的任务了。
比如Autoprefixer: https://github.com/postcss/autoprefixer
比如PrefixMyCSS: http://prefixmycss.com
你也可以去谷歌上搜css auto prefix以获得更多工具嗯…

飙车的神父 answered 11 years, 6 months ago

Ta.刷大根儿 answered 11 years, 6 months ago

Your Answer