* { box-sizing: border-box } FTW - Paul Irish

PHOTO EMBED

Wed Apr 06 2022 20:51:12 GMT+0000 (Coordinated Universal Time)

Saved by @Antjrobles #html

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
content_copyCOPY

https://www.paulirish.com/2012/box-sizing-border-box-ftw/