box-sizing:content-box;
width는 padding, border 크기를 포함하지 않는다.

box-sizing:border-box; 
width는 padding, border 크기를 포함한 크기 


ex)
같은 비율로 제작시.

ul li { box-sizing:border-box; width:25%; }

 

참고)
http://css-tricks.com/box-sizing/ 
https://developer.mozilla.org/En/CSS/Box-sizing  

+ Recent posts