← Back tothis vs that

Normalize vs Reset CSS

Written byPhuoc Nguyen
Created
23 May, 2020
Category
CSS
Each browser provides a set of default styles which are applied for every web pages it renders. The default style sheet is also known as the user-agent style sheet.
You can take a look at the default styles provided by:
Since the default styles are not the same, causing a web page will have different look and feel on each browser. Both normalizing and resetting CSS aim to fix that problem.
  1. Resetting CSS, as the name suggests, will reset all the built-in styles.
    The most popular CSS reset library is Meyer's reset.css which you can see the complete code here. For example, it resets the `margin` for `body` to 0:
    css
    body {
    margin: 0;
    }
    If you use the Developer Tool of Chrome browser, and inspect the body element of any web page, you will see that it has the margin of 8px by default which we often don't want to have at all:
    css
    body {
    margin: 8px;
    }
  2. Normalizing CSS is another alternative to resetting CSS.
    The most popular library in this area is normalize.css. It tries to make built-in browser styling consistent across browsers.
    More than that, the library also:
    • Makes some elements look like what we expect.
    For example, the Chrome, Firefox and Safari browsers use the following styles for the `sub` and `sup` tags:
    css
    sub {
    vertical-align: sub;
    font-size: smaller;
    }
    sup {
    vertical-align: super;
    font-size: smaller;
    }
    It's not easy for us to distinguish these tags with normal one visually. normalize.css improves by declaring the position for these tags:
    css
    sub {
    bottom: -0.25em;
    }
    sup {
    top: -0.5em;
    }
    • Fix display bugs across browsers.
    You can look at its source code to see there are lot of bug fixes for different browsers such as Internet Explorer, Edge, Firefox, etc.
You don't need to include normalize.css if you use popular CSS libraries. It's already included in:

Resources

  1. water.css adds more visual styles for common tags
  2. minireset is another tiny modern CSS reset
  3. This website allows us to get the default styles of various rendering engines for particular element
If you found this post helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!

Questions? 🙋

Do you have any questions about front-end development? If so, feel free to create a new issue on GitHub using the button below. I'm happy to help with any topic you'd like to learn more about, even beyond what's covered in this post.
While I have a long list of upcoming topics, I'm always eager to prioritize your questions and ideas for future content. Let's learn and grow together! Sharing knowledge is the best way to elevate ourselves 🥷.
Ask me questions

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn