https://github.com/gotbahn/no-sheet-reset
Start from a scratch. Full CSS reset
https://github.com/gotbahn/no-sheet-reset
css css-reset reset-css
Last synced: about 2 months ago
JSON representation
Start from a scratch. Full CSS reset
- Host: GitHub
- URL: https://github.com/gotbahn/no-sheet-reset
- Owner: gotbahn
- License: mit
- Created: 2016-02-01T22:52:38.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-06-21T02:41:38.000Z (over 4 years ago)
- Last Synced: 2025-08-23T09:43:40.992Z (7 months ago)
- Topics: css, css-reset, reset-css
- Language: CSS
- Homepage:
- Size: 333 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/no-sheet-reset)
[](https://travis-ci.org/godban/no-sheet-reset)
[](https://github.com/godban/no-sheet-reset)
[](https://www.npmjs.com/package/no-sheet-reset)
[](https://www.npmjs.com/package/no-sheet-reset)
# No Sheet Reset
Start from a scratch. Full CSS reset.
**Please be aware of what you're doing and use it wisely**.
No Sheet Reset clears almost all user agent styles. Your users would not be able to see tab highlights, validation errors, lists markers, etc. unless you provide it back.
Changes default box-sizing behaviour.
## Install
### npm
```
npm i no-sheet-reset --save
```
## raw file
[index.css](https://raw.githubusercontent.com/godban/no-sheet-reset/master/index.css)
```css
/**
* https://github.com/godban/no-sheet-reset
* v2.0.0 | 18.03.2018
* License: MIT
*/
*,
*::after,
*::before {
box-sizing: inherit;
}
* {
background: transparent;
border: 0;
box-shadow: none;
color: inherit;
font: inherit;
margin: 0;
outline: 0;
padding: 0;
vertical-align: baseline;
}
html {
box-sizing: border-box;
}
li {
list-style-type: none;
}
a {
text-decoration: inherit;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
```