Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/04/2011, 17:02
nedyer
 
Fecha de Ingreso: enero-2011
Mensajes: 94
Antigüedad: 13 años, 3 meses
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>