본문 바로가기
언어공부/python

box-sizing

by Olivia Ha 2018. 4. 3.


The box-sizing property can be used to adjust this behavior:


content-box gives you the default CSS box-sizing behavior. If you set an element's width to 100 pixels, then the element's content box will be 100 pixels wide, and the width of any border or padding will be added to the final rendered width.


border-box tells the browser to account for any border and padding in the values you specify for an element's width and height. If you set an element's width to 100 pixels, that 100 pixels will include any border or padding you added, and the content box will shrink to absorb that extra width. This typically makes it much easier to size elements.

패딩이나 보더 다 합쳐도 전체 width를 넘어가지 않게끔. 

그림 꼭 확인하기 : https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing