Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/04/2008, 17:41
Jamati
 
Fecha de Ingreso: febrero-2008
Mensajes: 578
Antigüedad: 16 años, 1 mes
Puntos: 3
alinear verticalmente inferior

Hola, como puedo hacer para que el div.texto del siguiente ejemplo quede alineado verticalmente inferior dentro del div.contenedor

Código HTML:
<html>
<head>
<title></title>
<style type="text/css">
div.contenedor {width:700px;height:800px;border:1px solid #FF0000;background:#E5E5E5;}
div.texto {width:200px;border:1px solid #000000;background:#0099FF;}
</style>
</head>
<body>
<div class="contenedor">
  <div class="texto">
    TEXTO<br>
    TEXTO<br>
    TEXTO<br>
    TEXTO<br>
  </div>
</div>
</body>
</html>