An unmodified copy of Eric Meyer's CSS reset.
npm install reset-cssAn unmodified\* copy of Eric Meyer's CSS reset.
With curl:
``command`
$ curl -LO "https://unpkg.com/reset-css/reset.css"
$ curl -LO "https://unpkg.com/reset-css/less/reset.less"
$ curl -LO "https://unpkg.com/reset-css/sass/_reset.scss"
With NPM:
`command`
$ npm install reset-css
With Yarn:
`command`
$ yarn add reset-css
With Bower:
`command`
$ bower install reset-css
HTML:
`html`
CSS:
`css`
@import '/path/to/reset-css/reset.css';
Via PostCSS and postcss-import:
`css`
@import 'reset-css';
Via webpack and css-loader:
`js`
import 'reset-css';
Via Less:
`less`
@import '/path/to/reset-css/less/reset';
Via Sass:
`scss`
@import '/path/to/reset-css/sass/reset';
Three changes have been made from the 2011 version, all approved by Mr. Meyer:
- Added main to list of HTML 5 elements (#7)hidden
- Added rule to fix attribute on HTML 5 elements (#12)menu` to list of lists (#17)
- Added
----
Eric Meyer http://meyerweb.com/eric/tools/css/reset/
License: none (public domain)