code

Applying Normalize.css to Relax Your CSS File

Yashu Mittal

In this vlog will learn about Normalize.css, a new CSS tool we can use as an alternative to traditional CSS reset methods.

Normalize.css makes browsers render all elements more consistently and in line with modern standards. It precisely targets only the styles that need normalizing.

Video Transcription

In this video, we’ll learn about Normalize.css, a new CSS tool we can use as an alternative to traditional CSS reset methods. Let’s check it out.

Most CSS resets provide developers a baseline for styling pages by completely removing certain browser style inconsistencies, such as margins, padding, line height, heading, and font sizes.

But depending on your project, it’s okay to leave in some of those basic default browser styles.

What Normalize.css does is, it preserves useful browser default styles instead of removing all default styles from every element. It also corrects common bugs like display settings for HTML5 elements, font size rendering, and form element styling.

All HTML elements will render consistently and in line with modern web standards.

You can download Normalize.css at codecarrotnet.github.io/normalize.css. Or grab the files on GitHub at github.com/codecarrotnet/normalize.css.

Save the file in your project folder, then link in your HTML file right above your main style sheet. Or you can import it from your main style sheet and you’re all set.

Pro Tip: You can even use the hosted normalize.min.css file.

There are some advantages to use Normalize.css over other reset methods. Since it preserves useful default styles, there’s no need to overwrite a lot of element styles. Headings and paragraphs, for example, preserve their default styles consistently across the browsers.

Another neat feature is that, it also makes form elements cross-browser consistent and styleable.

The normalized style sheet is small in size and it’s modular, so it makes it easy for us to see exactly which elements need specific styles, and we can also remove entire sections of the CSS file if we do not need them in our project.

The CSS file also has detailed in-line documentation explaining why each rule was added and how it affects each browser.

Normalize.css is not necessarily a better solution over other reset techniques. It’s just an alternative method that, depending on your project, might be the best fit.

With other full CSS resets, you begin from no styles whatsoever and, build up from there.

Normalize.css lets you start somewhere in the middle, in a state that’s consistent in all browsers, then you build up or down as you need.

If you’ve been using CSS resets for a while, give Normalize.css a try. You might realize that your site might require fewer fixes for browser compatibility than you thought. As with any tool or framework, read the documentation first to make sure it’s the right solution for you.


A quick view of normalize.css file

Response to “Applying Normalize.css to Relax Your CSS File”

Stay current

Sign up for our newsletter, and we'll send you news and tutorials on business, growth, web design, coding and more!