https://github.com/kirklin/reset-css
Collection of standard reset CSS stylesheets.
https://github.com/kirklin/reset-css
reset reset-css
Last synced: 11 months ago
JSON representation
Collection of standard reset CSS stylesheets.
- Host: GitHub
- URL: https://github.com/kirklin/reset-css
- Owner: kirklin
- License: mit
- Created: 2023-01-19T06:57:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-24T10:06:02.000Z (over 1 year ago)
- Last Synced: 2024-11-01T21:42:25.969Z (over 1 year ago)
- Topics: reset, reset-css
- Language: CSS
- Homepage: https://www.npmjs.com/package/@kirklin/reset-css
- Size: 43.9 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @kirklin/reset-css
Collection of standard reset CSS stylesheets.
```bash
npm i @kirklin/reset-css
```
```ts
// main.js
// pick one of the following
// normalize.css https://necolas.github.io/normalize.css/
import '@kirklin/reset-css/normalize.css'
// sanitize.css https://github.com/csstools/sanitize.css#usage
import '@kirklin/reset-css/sanitize/sanitize.css'
import '@kirklin/reset-css/sanitize/assets.css'
// reset.css by Eric Meyer https://meyerweb.com/eric/tools/css/reset/index.html
import '@kirklin/reset-css/eric-meyer.css'
// preflights from tailwind
import '@kirklin/reset-css/tailwind.css'
// opinionated reset by Kirklin
// https://github.com/kirklin/reset-css/blob/main/kirklin.md
import '@kirklin/reset-css/kirklin.css'
```