Package Exports
- reset-css
- reset-css/reset.css
- reset-css/sass/_reset.scss
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (reset-css) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
reset.css
An unmodified* copy of Eric Meyer's CSS reset.
Install
With curl:
$ 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:
$ npm install reset-cssWith Yarn:
$ yarn add reset-cssWith Bower:
$ bower install reset-cssUsage
HTML:
<link rel="stylesheet" href="/path/to/reset-css/reset.css" />CSS:
@import '/path/to/reset-css/reset.css';Via PostCSS and postcss-import:
@import 'reset-css';Via webpack and css-loader:
import 'reset-css';Via Less:
@import '/path/to/reset-css/less/reset';Via Sass:
@import '/path/to/reset-css/sass/reset';*Changelog
Three changes have been made from the 2011 version, all approved by Mr. Meyer:
- Added
mainto list of HTML 5 elements (#7) - Added rule to fix
hiddenattribute on HTML 5 elements (#12) - Added
menuto list of lists (#17)
Eric Meyer http://meyerweb.com/eric/tools/css/reset/
License: none (public domain)