mirror of
https://github.com/papercss/papercss
synced 2026-03-18 08:19:55 +01:00
8 lines
No EOL
181 B
Text
8 lines
No EOL
181 B
Text
// Why is box sizing not the default?
|
|
// https://www.paulirish.com/2012/box-sizing-border-box-ftw/
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
} |