vote up 15 vote down star
8

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?

flag

9 Answers

vote up 17 vote down check

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, Base 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|flag
2  
And most of them are just based on Eric Meyer's reset anyway. – Sam Murray-Sutton Sep 23 '08 at 9:40
vote up 1 vote down

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

* {
    padding:0;
    margin:0;
}
link|flag
3  
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
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 4 vote down

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|flag
vote up 1 vote down

I use the following from Eric Meyer. It just works.

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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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