Skip to content

Commit

Permalink
Changed overflow: visible to overflow: hidden for hr element necolas#861
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasper1467 committed Sep 21, 2023
2 parents cb42d40 + 4a8722a commit 68eeda5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,30 @@ h1 {
margin: 0.67em 0;
}

<<<<<<< HEAD
/* Grouping content */
/* ========================================================================== */
=======
/* Grouping content
========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Hide the overflow in Edge and IE.
*/
>>>>>>> 4a8722a6a0e36d76bf3e7340d33619905b35b6cb

/* Improve appearance of horizontal rules */
hr {
<<<<<<< HEAD
box-sizing: content-box;
height: 0;
overflow: visible;
=======
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: hidden; /* 2 */
>>>>>>> 4a8722a6a0e36d76bf3e7340d33619905b35b6cb
}

/* Enhance preformatted text display */
Expand Down

0 comments on commit 68eeda5

Please sign in to comment.