From 628d9b8a10f9450b0777f321d7d79aa47ea6774e Mon Sep 17 00:00:00 2001 From: Eliseu Amaro Date: Thu, 9 Dec 2021 18:58:42 +0000 Subject: [PATCH] [CSS][Reset] CSS box model fix --- assets/css/reset.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/css/reset.css b/assets/css/reset.css index 05feea3..7d40b48 100644 --- a/assets/css/reset.css +++ b/assets/css/reset.css @@ -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; -} \ No newline at end of file +}