![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
19/04/2011, 17:02
|
| | Fecha de Ingreso: enero-2011
Mensajes: 94
Antigüedad: 14 años, 1 mes Puntos: 7 | |
Respuesta: Dos divs a la misma altura esto debe ser lo que quieres pero no especificas mucho
<!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>Documento sin título</title>
<style type="text/css">
.contenido {
height: 500px;
width: 500px;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
text-transform: uppercase;
text-align: center;
background-color: #F7F7F7;
}
.noticias {
padding: 0px;
width: 250px;
height: 500px;
float: left;
}
.menu_derecha {
float: left;
height: 500px;
width: 250px;
}
</style>
</head>
<body>
<div class="contenido" id="contenido">
<div class="noticias" id="noticias">noticias</div>
<div class="menu_derecha" id="menu_derecha">menu derecha</div>
</div>
</body>
</html> |