Add border-box by default

This commit is contained in:
Thomas Dehaeze 2020-11-26 19:56:05 +01:00
parent 4d39cb9e18
commit af17da0ca8

View File

@ -17,6 +17,13 @@ body {
ol, ul {
list-style: none; }
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
blockquote, q {
quotes: none; }