creo que lo que buscas es esto
Código:
<!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" />
<style>
body{
margin: 0px;
padding: 0px;
}
.cabezera{
width: 100%;
margin: 0 auto;
height: 50px;
}
.div1{
width: 50%;
margin: 0 auto;
background-color: #0FF;
height: 50px;
float: left;
}
.div2{
width: 50%;
margin: 0 auto;
background-color: #0F0;
height: 50px;
float: right;
}
</style>
</head>
<body>
<div class="cabezera">
<div class="div1"></div>
<div class="div2"></div>
</div>
</body>
</html>