首页 > 代码库 > 百分比和像素共用

百分比和像素共用

在用百分比布局时经常要用到像素,好像一个border:1px solid red,你不可能写成border:0.1% solid red

所以修正他的方法是在这个div上加下面的样式,他会帮你处理像素,你只需要布好你的百分比就可以

    box-sizing: border-box;     -webkit-box-sizing: border-box;     -moz-box-sizing: border-box; 

 

百分比和像素共用