Created
November 30, 2021 03:23
-
-
Save fullmetalbrackets/50263f7d2fb8e6761efc883fa99ef403 to your computer and use it in GitHub Desktop.
CSS Reset
This file contains 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
html { | |
box-sizing: border-box; | |
height: 100%; | |
} | |
*, *:before, *:after { | |
box-sizing: inherit; | |
} | |
* { | |
margin: 0; | |
} | |
body { | |
height: 100%; | |
line-height: 1.5; | |
-webkit-font-smoothing: antialiased; | |
} | |
img, picture, video, canvas, svg { | |
display: block; | |
max-width: 100%; | |
} | |
input, button, textarea, select { | |
font: inherit; | |
font-size: 1rem; | |
} | |
p, h1, h2, h3, h4, h5, h6 { | |
overflow-wrap: break-word; | |
hyphens: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment