<div class="parent">
<div class="child">I've both a padding and a border.</div>
</div>
.parent {
width: 25em;
height: 10em;
margin: 2em auto;
background: deepskyblue;
box-sizing: 'border-box'
}
.child {
display: inline-block;
box-sizing: border-box;
background: tomato;
width: 100%;
padding: 1em;
border: .5em solid;
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.