Last active
October 19, 2023 06:21
-
-
Save FrankFang/df5e57a0799823ed89a960a642b3a1e2 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
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
*::before, | |
*::after { | |
box-sizing: border-box; | |
} | |
a { | |
color: inherit; | |
text-decoration: none; | |
} | |
input, | |
button { | |
font-family: inherit; | |
} | |
ol, | |
ul { | |
list-style: none; | |
} | |
table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment