Box Sizing in CSS
Recenlty I am facing the issue caused by wrong value of box sizing in CSS. Thus I make a demo below to remind myself.
Expirement
CSS Code:
HTML Code:
Result
when specify box-sizing as content-box: when specify box-sizing as border-box:
Summary
- The width of node content is equal to the width specifed in CSS code when the
box-sizing
is set tocontent-box
. (100px ) - The width of node content is equal to below when the
box-sizing
is set toborder-box
. (78px )