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>