Created
October 20, 2023 06:53
-
-
Save heycn/6759766a197a589e14d9213afc3bc3cc to your computer and use it in GitHub Desktop.
cssreset.css
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
| * { | |
| 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