Add box-sizing: border-box and try to fix bottom border

This commit is contained in:
Kelvin Ly 2019-12-03 18:11:06 -05:00
parent 397847f697
commit 13cba0aeee
1 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,11 @@
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0;
background-color: rgb(240, 240, 240);
@ -9,6 +17,7 @@ article {
max-width: 1012px;
margin-right: auto;
margin-left: auto;
padding-bottom: 20em;
}
nav, footer {