Created
March 25, 2024 02:27
-
-
Save tamadamas/20733839baa0ca039010a561ce1cde19 to your computer and use it in GitHub Desktop.
CSS normalize with light reset from https://mattbrictson.com/blog/css-normalize-and-reset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "modern-normalize"; | |
:root { | |
line-height: 1.5; | |
} | |
h1, h2, h3, h4, h5, figure, p, ol, ul { | |
margin: 0; | |
} | |
ol, ul { | |
list-style: none; | |
padding-inline: 0; | |
} | |
h1, h2, h3, h4, h5 { | |
font-size: inherit; | |
font-weight: inherit; | |
} | |
img { | |
display: block; | |
max-inline-size: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment