vote up 28 vote down star
34

I'm starting a new web project and I was planning to use a css reset stylesheet to have the same starting point styles in all major browsers. Have you used css resets? Would you recomment it?

Related: Best css reset

flag
You are welcome :) – Ólafur Waage Oct 3 '08 at 16:28
That's what it's all about. – micahwittman Oct 3 '08 at 17:50

10 Answers

vote up 49 vote down check

I recommend using a reset stylesheet. Good ones make cross browser issues very few and speed up the development of the layout a lot in my experience.

Hands down

http://meyerweb.com/eric/tools/css/reset/

link|flag
1  
+1 Eric Meyer's is the best IMO (no slow star selectors) – alex Mar 12 at 2:18
3  
Although you must remember to modify it as you need to, and redefine everything you need, like sub, sup, and :focus – Tordek Mar 16 at 20:21
2  
It's worth mentioning that Meyer's reset CSS validates successfully, whereas Yahoo's didn't (the last time i tried it). – Jeremy Michael Cantrell Apr 4 at 14:02
vote up 49 vote down

Point

Yes, absolutely use a CSS Reset if you plan to develop for cross-browser compatibility. I've used YUI, Eric Meyer Reset, and an earlier one developed by Faruk Ateş (whose website has gone dark.) One additional thing to keep in mind is that resets are designed to tear down differences. In most cases, this usually takes the form of removing padding and margins that would otherwise be inherent browser defaults.

Once you've torn down the differences, it's up to you to build up element padding and margins. If you find yourself in this situation, you'll probably want to look at the Stack Overflow question CSS Reset, default styles for common elements.

Counterpoint

You should also read counterpoint arguments against the use of CSS Resets. Jonathan Snook says he doesn't use resets and Eric Meyer wasn't upset at all. So there are folks who don't use resets and even some who actively discourage the use of resets.

Understanding both sides of the issue should help you make an informed decision as to whether they're right for you or not.

link|flag
1  
Nice post! Deserves more votes! – Chris Roberts Nov 20 '08 at 21:04
@Chris: Here's another +1 – alex Mar 12 at 2:18
@Chris: more +1... @Carl: Thanks – Mahin Sep 12 at 12:08
vote up 9 vote down

Yes. Yahoo's YUI Reset is a solid choice.

link|flag
3  
Except it doesn't validate. – Jeremy Michael Cantrell Apr 4 at 14:02
vote up 3 vote down

The goal of a reset should be to remove undesired default browser stylings where you are not adding your own stylings. For example if you have a site-wide styling for paragraphs it is pointless to have an earlier rule removing a margin/padding etc. from paragraphs and one applying them later.

However if you are styling your headings or unordered lists selectively then you will want a reset global styling to remove padding/margins etc. with special effects created by more specific rules like h3.articleSubheader or #navigation li.

link|flag
vote up 3 vote down

I have started looking at CSS frameworks and reset style sheets lately, and I have come to a basic conclusion.

Why reset? Set instead. Simply put, replace your reset style sheet with one that SETs all the basic styles to the defaults you would like to start from instead. You still get a good baseline across browsers by setting all your styles to a standard format. I just don't see the point of doing something to force me to specifically undo it later. I would much rather start with a style sheet that has a reasonable starting point that overrides the differences between browsers while at the same time making elements appear as I would expect them to everywhere.

So how about we see the death of the reset style sheet and the birth of frameworks with set style sheets. I think I will work on creating my own set.css in the near future.

link|flag
vote up 2 vote down

I think it's a good idea and can really speed up web development.

A few comments about which one is better can be found in this question.

link|flag
vote up 2 vote down

This is an old question but I just thought I'd add a disclaimer. CSS resetting can cause problems in situations where you need to render legacy presentational attributes. This may happen, for instance, with certain RichText editors, HTML webmail or older HTML generating code. CSS rules ALWAYS override HTML ones, even when the HTML values are on the element itself. This means your reset values will break something like <td valign="top"> when you reset td{vertical-align: baseline;} as done in the Eric Meyer example.

This is not to say you shouldn't consider reset css, just that it some situations it will cause problems of its own.

link|flag
vote up 1 vote down

I personally do not use a reset stylesheet, and would not allow anyone on my team to do so. Anyone who is sufficiently competent with CSS should just be able to set up their styles correctly from the start, without the need for this extra stylesheet, which just adds bulk to the page. One of the linked answers above sums it up nicely - why reset a bunch of styles just to override them with your own values?

link|flag
vote up 0 vote down

I definately use a CSS reset. As others have stated it helps having a baseline to start with to reduce the number of quirks you may encounter when dealing with more complex styles across an array of browsers.

When I first read about the CSS reset, I thought it was a hack designed for the true fanatics. However, a recent project justified its use many time over when just making a consistent layout between IE6, IE7, and Firefox.

If you were just building an intranet website aimed at IE7, then it may not be that critical. However, its a really low performance hit and helps in establishing a consistent style.

link|flag
vote up 0 vote down

Yes, and i encourage you to use a CSS Reset, because you can more control your layout I use Reset.css from Eric Meyer

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.