https://github.com/kossnocorp/reset.css
Genuine Eric Meyer's Reset CSS bundled as npm package
https://github.com/kossnocorp/reset.css
Last synced: 15 days ago
JSON representation
Genuine Eric Meyer's Reset CSS bundled as npm package
- Host: GitHub
- URL: https://github.com/kossnocorp/reset.css
- Owner: kossnocorp
- Created: 2015-09-18T12:11:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-18T12:37:51.000Z (over 9 years ago)
- Last Synced: 2025-02-07T12:42:38.169Z (3 months ago)
- Language: CSS
- Homepage:
- Size: 121 KB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# reset.css
Genuine [Eric Meyer's Reset CSS](http://meyerweb.com/eric/tools/css/reset)
bundled as npm package.## Installation
```
npm install reset.css --save
```## Example
When using with [cssnext](http://cssnext.io):
``` css
@import 'reset.css';html {
box-sizing: border-box;
}*, *:before, *:after {
box-sizing: inherit;
}
```## License
None (public domain)