Listo amigos he solucionado el problema aqui pongo el codigo, muchas grasias a todos aquellos que me prestaron atencion
Código CSS:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es-es">
<head>
<title>Interferencias by Rafael</title>
<style type="text/css">
#divPadre {
background-color:blue;
overflow: hidden;
padding:25px;
position: absolute;
top: 100px;
left: 200px;
width: 400px;
height: 100px;">
}
#cajon1 {
float:left;
background:#CC6600;
}
#cajon3 {
float:left;
clear:both;
margin:0px auto;
background:#CC6600;
}
</style>
</head>
<body>
<div id="divPadre">
<div id="cajon1">
DonMango
</div>
<div id="cajon3">
Registro de usuarios
</div>
</div>
</body>
</html>