box-shadow는 Geometry 계산에 포함되지 않는다(reflow가 일어나지 않는다.) ⇒ 이를 통해 성능상 이점을 얻을 수 있다.
<style>
div{width: 100px; height: 100px; padding: 10px; border:10px solid #000; display: inline-block}
</style>
<div style="background:red"></div>
<div style="background:blue;box-sizing:border-box"></div>
<style>
div{width: 100px; height: 100px; padding: 10px; border:10px dashed #000; display: inline-block}
</style>
<div style="background:red"></div>
<div style="background:blue;box-sizing:border-box"></div>
<style>
div{width: 100px; height: 100px; padding: 10px; border:10px dashed #000; display: inline-block}
</style>
<div style="background:red"></div>
<div style="background:blue;box-shadow: 0 0 0 10px #aa0"></div>