From 0bdcaade3afc281ca24d357bb1d07f24610106c0 Mon Sep 17 00:00:00 2001 From: costingh Date: Thu, 15 Jul 2021 08:10:06 +0300 Subject: [PATCH 1/2] Changed overflow visible to hidden of hr element --- normalize.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index 192eb9ce4..284d7fc57 100644 --- a/normalize.css +++ b/normalize.css @@ -53,7 +53,7 @@ h1 { hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ - overflow: visible; /* 2 */ + overflow: hidden; /* 2 */ } /** From 4a8722a6a0e36d76bf3e7340d33619905b35b6cb Mon Sep 17 00:00:00 2001 From: costingh Date: Thu, 15 Jul 2021 19:41:56 +0300 Subject: [PATCH 2/2] fixed comment for hr element --- normalize.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index 284d7fc57..ef3ea842a 100644 --- a/normalize.css +++ b/normalize.css @@ -47,7 +47,7 @@ h1 { /** * 1. Add the correct box sizing in Firefox. - * 2. Show the overflow in Edge and IE. + * 2. Hide the overflow in Edge and IE. */ hr {