08/02/2007, 17:07
|
| Colaborador | | Fecha de Ingreso: octubre-2006 Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 18 años, 1 mes Puntos: 280 | |
Re: Alinear texto "abajo" en div Esta es una manera:
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>web</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<style>
#contenedor { margin: 0px;
width: 200px;
background-color: rgb(255, 153, 102);
color: rgb(0, 0, 0);
height: 474px;
position: relative;
}
#menuhz { background-color: rgb(255, 153, 102);
color: rgb(0, 0, 0);
bottom: 0pt;
position: absolute;
}
</style>
</head>
<body>
<div id="contenedor">
<div id="menuhz"> primero<br>
segundo<br>
tercero<br>
cuarto<br>
primero</div>
</div>
</body>
</html>
Mikel. |