1. reset-css
An unmodified copy of Eric Meyer's CSS reset.
reset-css
Package: reset-css
Created by: shannonmoeller
Last modified: Fri, 21 Jul 2023 22:48:23 GMT
Version: 5.0.2
License: Unlicense
Downloads: 340,244
Repository: https://github.com/shannonmoeller/reset-css

Install

npm install reset-css
yarn add reset-css

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-css

With Yarn:

$ yarn add reset-css

With Bower:

$ bower install reset-css

Usage

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 main to list of HTML 5 elements (#7)
  • Added rule to fix hidden attribute on HTML 5 elements (#12)
  • Added menu to list of lists (#17)

Eric Meyer http://meyerweb.com/eric/tools/css/reset/

License: none (public domain)

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin