Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/10/2008, 08:53
Avatar de ivor
ivor
 
Fecha de Ingreso: abril-2005
Ubicación: Venezuela
Mensajes: 673
Antigüedad: 19 años
Puntos: 2
Mensaje Reset CSS ¿Cual es su importancia?

He estado leyendo bastante sobre CSS ultimamente, actualizandome un poco sobre las últimas técnicas para hacer las páginas compatible con los estándares y me he encontrado con varias herramientas entre ellas los Reset's CSS, especificamente el Reset Css de Eric Meyer uno de los dioses del CSS en la Red, ¿Cual es la importancia de usar esta herramienta? ¿Es verdaderamente útil? ¿Se debe usar siempre? Aqui está el Reset de Eric:

Código:
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;
}
__________________
Twitter: ipad

Última edición por ivor; 30/10/2008 a las 09:11