Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/01/2007, 19:04
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: Problema con margenes de HR en Internet Explorer

Yo diría que no se puede. Lo más parecido:

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>footerStick - Footer sticks to bottom of page</title>
  <style>
<!--
div {
background: green;
color: white;
margin: 0;
padding: 0;
}
p {
background: red;
color: white;
margin: 0;
padding: 0;
}
.linea {
font-size: 1px;
height: 1px;
background-color: #808080;
}
-->
  </style>
</head>
<body>
<div>
<p>texte</p>
<div class="linea">&nbsp;
</div>
<p>texte</p>
</div>
</body>
</html>
Mikel