[CSS][Reset] CSS box model fix

This commit is contained in:
Eliseu Amaro 2021-12-09 18:58:42 +00:00
父節點 523885484b
當前提交 628d9b8a10
簽署人: eliseuamaro
GPG 金鑰 ID: 96DA09D4B97BC2D5
共有 1 個檔案被更改,包括 5 行新增1 行删除

查看文件

@ -1,6 +1,10 @@
/*
* -- RESET --
*/
* {
box-sizing: border-box;
}
ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input, textarea {
margin: 0;
padding: 0;
@ -132,4 +136,4 @@ ul {
}
ul li {
margin-left: 1rem;
}
}