CSS set up box-sizing

PHOTO EMBED

Fri Aug 05 2022 18:36:18 GMT+0000 (Coordinated Universal Time)

Saved by @davidpetrey #css

<style>
    /* Universal Box Sizing */
      
    *, *:before, *:after {
      box-sizing: border-box;
    }
      
    /* Universal Box Sizing with Inheritance */
      
    html {
      box-sizing: border-box;
    }
    *, *:before, *:after {
      box-sizing: inherit;
    }
</style>
content_copyCOPY

https://css-tricks.com/box-sizing/#aa-universal-box-sizing-with-inheritance