Custom css baseline styles
Table of Contents
The goal of a reset/normalize stylesheet is to reduce browser inconsistencies.
While browser inconsistencies have improved over the years, many of the most popular css normalize and css reset stylesheets have not updated in years.
This project is somewhat between a modern reset and normalize (mostly a normalize though), so I just named it normalize-reset ¯\__(ツ)__/¯
Normalize-reset was created by mixing other css-reset and css-normalize stylesheets (see acknowledgments) to cater to my own needs.
Getting started with normalize-reset should be fairly straightforward. Just follow these simple steps.
-
Download the
normalize-reset.css
file -
Place the normalize-reset.css-file in your project folder or subfolder (e.g.
/styles
) -
Import normalize-reset.css BEFORE your main stylesheet (CSS: order of appearance)
<!-- HTML --> <link rel="stylesheet" href="yourPath/normalize-reset.css" /> <link rel="stylesheet" href="yourPath/style.css" />
or
/* JavaScript */ import "yourPath/normalize-reset.css"; import "yourPath/style.css";
Make sure to have your own styles imported after the normalize-reset.css import. The normalize-reset is just a starting point, feel free to overwrite the styles when needed in your main stylesheet.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.
Project Link: https://github.com/aaronharinck/normalize-reset