Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/10/2009, 12:39
Avatar de luckystrikede11
luckystrikede11
 
Fecha de Ingreso: octubre-2009
Ubicación: Concepcion, Chile
Mensajes: 240
Antigüedad: 14 años, 6 meses
Puntos: 17
Respuesta: Ayuda urgente con html |celdas|

lo otro.. es crear 2 columnas...

esto en el head
Código HTML:
<style>
#contenedor{
width:800px;
}
#izquierda{
float:left;
width:200px;
}
#derecha{
float:right;
width:600px;
}
</style> 
esto en el body
Código HTML:
<div id="contenedor">
      <div id="izquierda"><!--Aqui lo que quieras--></div>
      <div id="derecha"><!--Aqui lo que quieras--></div>
</div>