<p>Both the inner and outer boxes have a padding of 10px.</p>
<div id='outer'><div id='inner'>100%</div></div>
<p>If the inner box has a width of 100%, it will break out of the the outer box. Changing the width to auto keeps it inside the outer box.</p>
<p>Click the button to toggle the class that changes the interior box's width property from 100% to auto.</p>
<button id='auto'>auto</button>
<p>Using border-box for box-sizing prevents this as well.</p>
<button id='box'>box sizing</button>