标签:
在用百分比布局时经常要用到像素,好像一个border:1px solid red,你不可能写成border:0.1% solid red
所以修正他的方法是在这个div上加下面的样式,他会帮你处理像素,你只需要布好你的百分比就可以
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
标签:
原文地址:http://www.cnblogs.com/yanwen2015/p/4233205.html