From 376d7da0d12fc0c2fbe766aa93828b3010bf7826 Mon Sep 17 00:00:00 2001 From: Aarzoo <59678435+Aarzoo75@users.noreply.github.com> Date: Tue, 1 Nov 2022 00:18:26 +0530 Subject: [PATCH] Added the margin and padding to 0 in the Universal selector. I added the margin and padding to 0 in the Universal selector. --- style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/style.css b/style.css index 8272714..474dd68 100644 --- a/style.css +++ b/style.css @@ -1,4 +1,6 @@ * { + margin: 0; + padding: 0; box-sizing: border-box; } body {