vote up 3 vote down star

I'm not too sure if it is refered to as "Master Reset" but you'll know what I mean.

Ive been using

*{
      padding: 0;
      margin: 0;
    }

With no real problems that I have noticed but ive heard people say that its bad practice to use something like that. So ive looked into reset stylesheets and found this which seems good. But im not sure if its worth using that if there are no problems with using *{foo:bar;}

flag

74% accept rate
if you dont find a good answer here, then try to ask at www.doctype.com – Cleiton Aug 22 at 16:51

4 Answers

vote up 2 vote down check

I hear some people say that in some browsers it messes up with the styling of form inputs. I used to use this, until I stumbled across the meyer reset, which just seemed like a safer, proven approach.

link|flag
Link to meyer reset? – d03boy Aug 22 at 16:55
meyerweb.com/eric/thoughts/… – Ben Alpert Aug 22 at 17:09
The link above from @Ben Alpert is OUT OF DATE. Use the most current version instead - meyerweb.com/eric/tools/… It never ceases to amaze me how often people link to the old version! @d03boy - The OP actually did post a link to the current Meyer reset. It's the "found this" link. – Andy Ford Aug 22 at 17:44
vote up 1 vote down

There are arguments for and against CSS resets. The general idea is that by "zeroing-out" all properties you're given a consistently blank canvas across all browsers to which you can apply your custom styles.

The problem with using a reset is that everything will be reset - so, you need to specify custom styles for everything, or at least everything you're going to be utilising within your site.

Read Snook's view: http://snook.ca/archives/html%5Fand%5Fcss/no%5Fcss%5Freset/

I often see sites with odd styles applied in commenting systems. For example, I might leave a comment with a <code> tag and because the site uses a css-reset the code tag has no special styling, making it visually pointless. This is only a problem with those full-on resets, like Meyers or Yahoos. Developers forget to apply styles to reset elements... Your flat-reset, while simple, has other ramifications.

In my opinion it's better to have no reset and just style each element on top of default styles offered by the browser.

link|flag
vote up 0 vote down

I think this is just personal preference, the more complex your styles get the more it matters and a more specific reset style sheet may matter. All that matters is that your sites look like they should across all reasonable browsers (and by reasonable at this point I'm not including anything IE6 or prior).

I've switched to only a handful of resets to handle negative margins in extreme cases, otherwise most current browsers seem to be pretty consistent, a very different ecosystem than a few years ago.

link|flag
vote up -1 vote down

The problem with using the universal wildcard is that it destroys inheritance by applying to all elements equally, which is the strongest feature of CSS. If that does not bother you then use it to your heart's content. I have used this before:

* {font-size:10px;}

That bit of code forces all text to be that size which then makes it easier to calculate em measurement since there is not interference to the definition of the em from inheritance.

link|flag
For what it's worth, the padding and margin properties (mentioned in the OP) aren't inheritable. – ChrisW Aug 22 at 16:59
True, but that doesn't answer his question. The question was about best practices and why the wildcard may violate those best practices. – austin cheney Aug 23 at 0:50

Your Answer

Get an OpenID
or

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