Comunidad de diseño web y desarrollo en internet online

no puedo dividir un div en dos columnas

Citar            
MensajeEscrito el 07 Dic 2009 03:35 pm
Hola a todos, mi problema es que necesito dividir un div en dos para que uno me aparezca a la izquierda y otro a la derecha, pero al hacerlo uno se me ubica encima del otro. Aqui dejo el codigo css y html a ver si alguien me puede decir como arreglarlo.
codigo css:
*{margin: 0; padding: 0;}

body {margin:10px;
padding:0;
background-color:rgb(173,210,236);
}

#content {
margin:0 auto;
position:relative;
width:800px;
height:20px;
border:1px solid #000000;
}

#izquierda{
width:400px;
height:20px;
background-color:green;
}

#derecha{
width:400px;
height:20px;
background-color:yellow;
}
/**************************************************/*
codigo html:
<!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=iso-8859-1" />
<title>Pasto Deporte</title>
<link href="estilo.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="content">
<div id="izquierda">
</div>
<div id="derecha">
</div>
</div>
</body>

Por sebastiancb

62 de clabLevel



 

msie8
Citar            
MensajeEscrito el 07 Dic 2009 03:47 pm
Claro, para hacer que uno esté a la izquierda y otro a la derecha debes utilizar la propiedad float ^^

Código :

*{margin: 0; padding: 0;}

body {
margin: 10px;
padding: 0;
background-color: #ADD2EC;
}

#content {
margin: 0 auto;
position: relative;
width: 800px;
height: 20px;
border:1px solid #000000;
}

#izquierda{
width:400px;
height:20px;
background-color:green;
float: left;
}

#derecha{
width:400px;
height:20px;
background-color:yellow;
float: right;
}


Te convendría eliminar las alturas, a menos que quieras que tengan siempre ese alto :)

Por Drake

36 de clabLevel



 

firefox
Citar            
MensajeEscrito el 02 Jul 2018 11:34 pm
Utiliza Float en ambos divs(Izquierda y derecha) o Usa display: inline-block.

Por zDual

1 de clabLevel



 

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.