Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/03/2006, 01:44
Avatar de kahlito
kahlito
Colaborador
 
Fecha de Ingreso: marzo-2003
Ubicación: En el Estrecho y el mar
Mensajes: 2.936
Antigüedad: 21 años, 1 mes
Puntos: 65
Hola larariro, puedes hacerlo de varias formas, en tu caso por ejemplo así:

Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Prueba</title>
<style type="text/css" media="screen">
.izquierda {
    background-color:#aaaaaa;
    float: left;
}
.centro {
    background-color: #cccc55;
    float:left;
	}
.derecha {
    background-color: #ffaacc;
    float: right;
}
</style>
</head>
<body>
    <div class="izquierda">
        Izquierda
    </div>
    <div class="centro">
        Centro
    </div>
    <div class="derecha">
        Derecha
    </div>
</body>
</html> 
Solo tendrias que poner los anchos que desees a cada uno y listo