# reset-css

> An unmodified copy of Eric Meyer's CSS reset.

Latest version **5.0.2** (published 2023-07-21) · Unlicense license · 0 weekly downloads

## Install

```sh
npm install reset-css
pnpm add reset-css
yarn add reset-css
bun add reset-css
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 5.0.2 |
| Published | 2023-07-21 |
| First published | 2016-01-28 |
| Weekly downloads | 0 |
| License | Unlicense |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 367 |
| Author | Eric Meyer |
| Maintainers | shannonmoeller |

## Links

- npm: https://www.npmjs.com/package/reset-css
- Repository: https://github.com/shannonmoeller/reset-css
- Homepage: http://meyerweb.com/eric/tools/css/reset/
- Issues: https://github.com/shannonmoeller/reset-css/issues
- npm.io page: https://npm.io/package/reset-css

## Recent versions

- 5.0.2 (latest) — 2023-07-21
- 5.0.1 — 2019-10-19
- 5.0.0 — 2019-10-15
- 4.0.1 — 2018-06-04
- 4.0.0 — 2018-06-03
- 3.0.0 — 2018-03-14
- 2.2.1 — 2017-07-26
- 2.2.0 — 2016-09-24
- 2.0.20160720-1 — 2016-09-24
- 2.0.20160720 — 2016-07-20
- 2.0.20160620 — 2016-07-20
- 2.0.2011012603 — 2016-01-28

## README

# reset.css

An [unmodified\*](#changelog) copy of Eric Meyer's [CSS reset](https://meyerweb.com/eric/tools/css/reset/).

## Install

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](http://npmjs.com):

```command
$ npm install reset-css
```

With [Yarn](https://yarnpkg.com):

```command
$ yarn add reset-css
```

With [Bower](http://bower.io):

```command
$ bower install reset-css
```

## Usage

HTML:

```html
<link rel="stylesheet" href="/path/to/reset-css/reset.css" />
```

CSS:

```css
@import '/path/to/reset-css/reset.css';
```

Via PostCSS and [postcss-import](https://github.com/postcss/postcss-import):

```css
@import 'reset-css';
```

Via webpack and [css-loader](https://github.com/webpack-contrib/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';
```

## \*Changelog

Three changes have been made from the 2011 version, all approved by [Mr. Meyer](https://github.com/meyerweb):

- Added `main` to list of HTML 5 elements [(#7)](https://github.com/shannonmoeller/reset-css/pull/7#issuecomment-233969617)
- Added rule to fix `hidden` attribute on HTML 5 elements [(#12)](https://github.com/shannonmoeller/reset-css/issues/12#issuecomment-372821712)
- Added `menu` to list of lists [(#17)](https://github.com/shannonmoeller/reset-css/pull/17#issuecomment-542340039)

----

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

License: none (public domain)

---
_Source: https://npm.io/package/reset-css · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
