box-sizing: border-box
<style>
section {
width: 150px;
}
p {
width: 100%;
padding: 16px;
border: 2px solid;
/* Toggle this on and off in the devtools! */
/* box-sizing: border-box; */
}
</style>
<section>
<p>Hello World</p>
</section>*,
*::before,
*::after {
box-sizing: border-box;
}Last updated