<div class="box">The width of this box is 440px, even though it is defined at 400px in the CSS.</div>
.box {
margin: 0 auto;
background-color: aquamarine;
width: 400px;
height: 400px;
padding: 20px;
}
This Pen doesn't use any external CSS resources.