La leche! Sí que me sale!
Compruébalo y verás:
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
#pepe{
width: 300px;
height: 300px;
background-color: #ff0000;
margin-left: auto;
margin-right: auto;
}
#pepe1{
width: 100px;
height: 100px;
background-color: #00ff00;
margin-left: auto;
margin-right: auto;
float: left;
}
#pepe2{
width: 100px;
height: 100px;
background-color: #ff00ff;
margin-left: auto;
margin-right: auto;
float: left;
}
#pepe3{
width: 100px;
height: 100px;
background-color: #0000ff;
margin-left: auto;
margin-right: auto;
float: right;
}
</style>
</head>
<body>
<div id="pepe">
<div id="pepe1">pepe1:blabla</div>
<div id="pepe2">pepe2:bloblo</div>
<div id="pepe3">pepe3:bleble</div>
</div>
</body>
</html>