Last active
November 8, 2022 07:32
-
-
Save tevashov/031f1a45a8b3ec86630713a20b9dfcb3 to your computer and use it in GitHub Desktop.
Reset CSS - Sanitize CSS #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
| <!-- Sanitize CSS: https://github.com/csstools/sanitize.css#features --> | |
| <link href="https://cdn.skypack.dev/sanitize.css" rel="stylesheet" /> |
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
| <!-- Sanitize CSS: separate stylesheet that normalizes form controls without side effects. https://github.com/csstools/sanitize.css#forms --> | |
| <link href="https://unpkg.com/sanitize.css/forms.css" rel="stylesheet" /> | |
| <!-- Sanitize CSS: separate stylesheet that applies a comfortable measure to plain documents. https://github.com/csstools/sanitize.css#assets --> | |
| <link href="https://unpkg.com/sanitize.css/assets.css" rel="stylesheet" /> | |
| <!-- Sanitize CSS: separate stylesheet that normalizes typography using system interface fonts. https://github.com/csstools/sanitize.css#typography --> | |
| <link href="https://unpkg.com/sanitize.css/typography.css" rel="stylesheet" /> | |
| <!-- Sanitize CSS: separate stylesheet for restricting motion when the user has requested this at system level. https://github.com/csstools/sanitize.css#reduce-motion --> | |
| <link href="https://unpkg.com/sanitize.css/reduce-motion.css" rel="stylesheet" /> | |
| <!-- Sanitize CSS: separate stylesheet that adds support for using system-ui in Firefox. https://github.com/csstools/sanitize.css --> | |
| <link href="https://unpkg.com/sanitize.css/system-ui.css" rel="stylesheet" /> | |
| <!-- Sanitize CSS: separate stylesheet that adds support for using ui-monospace in Chrome, Edge, and Firefox. https://github.com/csstools/sanitize.css --> | |
| <link href="https://unpkg.com/sanitize.css/ui-monospace.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment