I found this answer stating that browsers that follow standards all default to the "content-box"
box model.
I'm currently using Mantine, it uses Emotion to style its components. While styling something I noticed that my page isn't actually using the "content-box"
box model. Then I found this element:
<style data-emotion="css-global" data-s="">
*, *::before, *::after {
box-sizing:border-box;
}
</style>
Which implies that emotion sets a global "border-box"
box model.
What would motivate that decision?