Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/09/2009, 09:43
Avatar de deirdre
deirdre
 
Fecha de Ingreso: mayo-2009
Mensajes: 690
Antigüedad: 14 años, 11 meses
Puntos: 45
Respuesta: Cómo puedo modificar la altura standard de todos elemntos de una página?

Hola ECZOR

Puedes crearte tu propio reset añadiendo o quitando elementos. Te pongo un ejemplo:

Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Resetear a 9px</title>
<style type="text/css">
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td,span {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: 9px;
}
</style>
</head>

<body>
<p>Prueba de párrafo</p>
<p>Prueba de párrafo</p>
<input name="prueba" value="Prueba de input" />
<div style="border: 1px dotted #484848;">Prueba de div</div>
<span>Prueba de span</span>
<h1>Prueba de h1</h1>
<code>Prueba de code</code>
<ul>
	<li>Prueba de lista 1</li>
	<li>Prueba de lista 2</li>
	<li>Prueba de lista 3</li>
</ul>
<button>Prueba de botón</button>
</body>

</html> 
Hazte un copy-paste y lo pruebas.

Bye