css reset

Който аз принципно ползвам :)

Код:
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,
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-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus { outline: 0; }
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul { list-style: none; }
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

@import url("reset.css");
 
Аз ползвам най-често този:

http://html5doctor.com/html-5-reset-stylesheet/

Като всеки път според нуждите си добавям и някой дефаулт стил от 960gs или blueprintcss
 
PHP:
html , body				{	margin:0; padding:0;}
body 					{	font: normal 12px Arial; color:#545454; }
hr						{	clear:both; margin:0; padding:0; height:1px; width:1px; line-height:1px; font-size:0px; overflow:hidden; display:block; border:0; background:none;}		
a							{	margin:0; padding:0; text-decoration:none; outline:none; color:#FF9797; }
a:hover					{	text-decoration:underline;}
a img					{	border:0px;}
form, table, tr, td, table	{	margin:0; padding:0; }
textarea				{	resize:none;}
h1,h2,h3,h4,h5,h6		{	margin:0; padding:0; font-weight:normal; font-size:1em;}
p						{	margin:0; padding:5px 0px; }
ul, dl, dt, dd, li			{	margin:0; padding:0; list-style-type:none; }


Аз пък ползвам този ресет, писал съм си го за моите нужди и до сега ми върши отлична работа ;)
 

Back
Горе