up vote 166 down vote favorite
82
share [g+] share [fb]

I'm looking for a css reset kit, but I never used one before. So which kits its out there, and whats your experiences regarding these kits?

And, is its any different between these kits, something you need to think about?

Related: Is it ok to use a css reset stylesheet?

link|improve this question
1  
'eh, personally I only use one when necessary. For the majority of the sites I work on, I am perfectly happy with however the browser does things by default. I only mention this to say that whether or not you need it (and probably which one you choose) depends on your specific situation and needs. – Brad Sep 2 '10 at 1:47
feedback

16 Answers

up vote 130 down vote accepted

I use Eric Meyer's CSS reset, as do many other people. It's even the reset script that Blueprint CSS uses. Yahoo also has one, Reset CSS. I myself am a fan of Blueprint. There's not much of a difference between these kits, because they all do pretty much the same thing: apply standard rules to elements, and eliminate cross-browser inconsistencies.

link|improve this answer
16  
And most of them are just based on Eric Meyer's reset anyway. – Sam Murray-Sutton Sep 23 '08 at 9:40
2  
unfortunately all of them need to be updated with HTML5 elements. Especially the new block level elements like header footer article section and nav – zzzzBov Jan 8 '11 at 8:11
20  
Eric Meyer's reset stylesheet does have a newer version with HTML5 elements listed... he just forgot to update the page linked. The newer one is at meyerweb.com/eric/thoughts/2011/01/03/reset-revisited – ssokolow Jan 8 '11 at 20:44
1  
Just to point out, Yahoo's Base CSS is not a reset, but they have one too (mentioned in the post below). The biggest difference between those two is that Eric Meyer's one is more radical as it resets all the gaps and borders (to the extent possible) and all default font properties using font:inherit, but this also means it doesn't work well in IE ≤ 7. – Adam Jul 25 '11 at 21:04
1  
@vol7ron: I thought of that, in this case I supposed the order will not change. But Yes, to be sure, I should have referred the post using its link, thanks for the notice. – Adam Aug 9 '11 at 10:58
show 2 more comments
feedback

Well there are two popular ones:

http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/

http://developer.yahoo.com/yui/reset/

I personal use YUI's version, but I've seen both used quite frequently.

link|improve this answer
1  
As knight mentions in his answer, the reset-reloaded is the older link. – HRJ Nov 3 '10 at 6:21
feedback

Thanks to @ssokolow for providing an updated link to Eric Meyer's reset script:

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

I've removed the copy and paste of the old script.

link|improve this answer
feedback

I like this one, it's four lines long:

* {
    padding:0;
    margin:0;
}
link|improve this answer
20  
This is a really heavy procedure on some older hardware. It can make large pages really sluggish and clunky to load. – Oli Sep 22 '08 at 19:01
10  
@Oli - I have heard this, but where is the evidence and proof? Is this a matter of clock cycles or miliseconds? – Christopher Altman Jul 1 '10 at 18:27
6  
Use efficient CSS selectors: code.google.com/speed/page-speed/docs/… – Török Gábor Nov 17 '10 at 13:08
4  
Actually guys, this answer is perfectly valid. There's no way to do it more efficiently. If you purposefully mean to target EVERY single element, then this is the way to do it. Writing out every single element manually would be a pain for you and a pain for the browser's parser. – trusktr May 26 '11 at 5:14
On the other hand, if you are resetting only ONE specific element among many similar elements, then this is when you need to use efficient selectors. This answer is a perfectly valid answer in order to reset EVERYTHING. There's no way to do it more efficiently. If you are aiming to reset EVERYTHING, then all other methods WILL use more resources... Really, it depends on your goal.... Besides, most people don't develop with old hardware in consideration. – trusktr May 26 '11 at 5:22
feedback

You can compare many of CSS resets in { CSS:resetr } site: http://cssresetr.com/

link|improve this answer
feedback

Eric Meyer's is good, but I'd probably go with the superset of it provided by HTML5 Boilerplate. (Update: The link now points to an old revision. HTML5 Boilerplate now uses normalize.css)

It's the only one I've seen which does more than just setting vertical-align to make display of input fields consistent. (In my experience, anything QtWebKit-based is likely to misinterpret the dimensions, positioning, font settings, etc. for native-themed widgets embedded in rendered pages)

link|improve this answer
5  
Since v2.0 HTML5 boilerplate uses normalize.css. This is my favorite at the moment. – To1ne Sep 28 '11 at 12:17
This one is the most up-to-date. – styu Oct 9 '11 at 20:05
Link to "superset" in this comment doesn't work any longer, please update. – Emil Stenström Dec 30 '11 at 21:25
feedback

Actually Eric Meyer's reset reloaded is his older copy. Go through the top toolbar and click "Toolbox" then find "CSS" and click that. The link should be http://meyerweb.com/eric/tools/css/reset/index.html

I've used Yahoo's Base CSS sheet but I've stuck with Meyer's reset sheet.

link|improve this answer
feedback

I've been very happy with yahoo reset for multiple project. I also use yahoo grids and fonts.

My friends who try and use other products (blueprint etc) eventually find surprises and end up changing over to yahoo's package and being more happy.

link|improve this answer
feedback

The consensus, I think, is Eric Meyer's Reset stylesheet. That's what I use.

Alternatively, you could create your own that resets only the basics.

link|improve this answer
feedback

The most important thing about a CSS reset is that it helps you getting your work done easier - therefor you should most probably build your own out of the inspiration you might be getting from already existing and out of your own conclusions about what a CSS reset should do.

My personal CSS reset is a bit different from for example Eric Mayer - but it suits me and makes me more productive which is exactly what it's supposed to do.

link|improve this answer
feedback
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{background:transparent;border:0;font-size:100%;margin:0;outline:0;padding:0;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}

This is Eric Mayer's Reset(Compressed Version).. 'Blue Print' is alright, But while you are using BP, Disable the browser default style with Web Developer tool bar, It shows some different, but not in Eric Mayer's Reset Kit. :)

link|improve this answer
feedback

I use Blueprint css. But I never use it just for reset. It's the best help I can get for doing a quick layout of a site.

link|improve this answer
feedback

The best CSS reset is one that isn't used on any site I have to work with. I don't appreciate being forced to use a bunch of CSS hacks and inline styles, all because someone thought having an easier job was more important than making the site scalable and maintainable for the future. I've spent too many hours reworking code from agencies who never considered the havoc global resets might wreak when implemented in a content management system.

link|improve this answer
Agreed. CSS resets are more trouble than they are worth, and add a ton of extra needless CSS to your site that needs to be processed every pageload. – donatJ Oct 11 '10 at 13:08
This just isn't true. If you're gzipping your content as you should, the amount of bytes you're sending the client is negligible. The time that resets save you chasing down inconsistencies between browsers is valuable. – sidewaysmilk Apr 7 '11 at 15:31
My main problem is with overzealous resets like td{vertical-align:baseline;}. With <table id="foo"> and #foo tr{vertical-align:top;}, my style cannot cascade to the td tags as it should. Sure, I can use #foo tr{vertical-align:top !important;}, but that's extra code for no good reason, and may break td styles further down. Browser consistency can be achieved without breaking the normal rendering process. – Webveloper Apr 7 '11 at 20:38
feedback

I always use a css reset, and if I'm using a third party one I always go a for the Yahoo! hosted stylesheet (mainly because I'm guessing it is the most popular and will be cached on a few visitor's browsers).

I have just come across this website though which might be useful - http://www.cssreset.com

link|improve this answer
feedback

I use the reset included in Bootstrap (Twitter's CSS framework):

http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css

html,body{margin:0;padding:0;}
h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,em,img,q,s,samp,small,strike,strong,sub,sup,tt,var,dd,dl,dt,li,ol,ul,fieldset,form,label,legend,button,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;}
table{border-collapse:collapse;border-spacing:0;}
ol,ul{list-style:none;}
q:before,q:after,blockquote:before,blockquote:after{content:"";}
html{overflow-y:scroll;font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
a:focus{outline:thin dotted;}
a:hover,a:active{outline:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
audio:not([controls]){display:none;}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
sup{top:-0.5em;}
sub{bottom:-0.25em;}
img{border:0;-ms-interpolation-mode:bicubic;}
button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;}
button,input{line-height:normal;*overflow:visible;}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}
button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;}
input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
textarea{overflow:auto;vertical-align:top;}

And I add: a:focus,input,textarea,select{outline:0;}

link|improve this answer
1  
This isn't really just a reset. It is a hybrid of (a modified version of) reset.css and normalize.css. Everything from line 6 down is from normalize.css. – necolas Dec 2 '11 at 14:49
Thank you for this information. – GG. Dec 2 '11 at 15:08
feedback

I use this one:

* { 
    margin:0; padding:0; border:0; 
    outline:0; vertical-align:baseline; font-family:'FontName';
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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