sass, less, scss, stylus, and styled-components support available.box-sing: border-box setThere are many inconsistencies between browsers. Like Firefox 3 has a margin on top of paragraphs but Internet Explorer 7 doesnβt have any margin. There are thousands of browsers with hundreds of versions. Each version at least has 500+ inconsistencies with different browsersβ different versions. How to keep up? This is an easy to use solution called reseter.css

| Feature | Reseter.css | Normalize.css | Sanitize.css | Reset.css |
|---|---|---|---|---|
| Normalizations | β | β | β | β |
| Basic elemental styles | β | Partial | β | β |
| Size (by bundle phobia) | ||||
| Minified version | β (Minify yourself) | β(Minify yourself) | β(Minify yourself) | |
| GZIP version | β (Compress yourself) | β (Compress yourself) | β (Compress yourself) | |
| Box sizing | β | β | β | β |
| Browser support | Customizable | Last 3 versions | Last 3 versions | Unknown |
You can find some templates for a faster experience in the templates section down below
Create A HTML File
<!DOCTYPE html>
<html>
<head>
<title>Reseter.css Quick Start</title>
</head>
<body>
<h1>Reseter.css Quick Start</h1>
<p>Hey fella! Don't forget to change the title text an remove this paragraph and the heading</p>
</body>
</html>
Call Reseter.css
<!-- To be placed in the head tag -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reseter.css" />
Star this repository, if you like the project! It means a lot to the development team, Those stars a boosting happiness for our team
How about reading a guide for best performance? Hereβs the link to optimizing reseter.css for production
Lastly you can view our wiki for best practices and performance guides
π₯³ All Set Now
More soonβ¦
There are various ways to install reseter.css. Like package managers, content delivery networks, local copiesβ¦
npm install reseter.css
yarn add reseter.css
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reseter.css" />
Reseter.css as said, is a zero-dependency project and excels in integrating with all kinds of usage options! These are a few easy guides for people to start
<head>
<link rel="stylesheet" type="text/css" href="path/to/reseter.min.css" />
<link
rel="stylesheet"
type="text/css"
href="path/to/your-custom-stylesheet.css"
/>
</head>
Warning!
Make Sure To Link Your Custom Stylesheet After Reseter.css Else Your Custom Styles Might Not Be Implemented
Note all of these guidelines are for static websites, frameworks like react have their own guide (please refer them)
Never import reseter.css via css, though this a option, it is not recommended for website loading, rather use html link tags
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reseter.css">
Use this easy loading trick to make your life a lot easier
<link rel="preload" as="style" href="https://cdn.jsdelivr.net/npm/reseter.css" onload="this.rel='stylesheet';this.onload=null">
<noscript>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reseter.css">
</noscript>
Find more at our wiki
Comment Blocks In The Sources
Long Documentation
Guide
All of these items are moved to the Benefits section once done