Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/07/2011, 07:48
Mikeliu
 
Fecha de Ingreso: enero-2011
Ubicación: Palma
Mensajes: 49
Antigüedad: 13 años, 3 meses
Puntos: 0
Pregunta Altura de body y HTML

¿Por qué teniendo
Código:
<html>
	<head>
		<style>
			* { margin:0; padding:0 }
			html, body { height:100% }
			html { background:red }
			body{ background:blue }
		</style>
	</head>
	<body>...</body>
</html>
al tener el body un contenido que supera el límite vertical no se adapta a la etiqueta HTML (que sí se estira del todo)? En el ejemplo, aparece un porción en rojo, del HTML.

Probado en Firefox, Chrome y Safari.