Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/07/2013, 17:04
anacarmona
 
Fecha de Ingreso: julio-2013
Mensajes: 11
Antigüedad: 10 años, 9 meses
Puntos: 0
No logro poner un div abajo de otros

Tengo el siguiente código (anexo una imagen de como se ve), según yo debería de ponerme donde dice políticas de privacidad (que es lo que esta abajo del botón enviar) abajo de todo y centrado y no, lo mete en el div que esta antes, espero me puedan orientar en cual es mi problema.



Código PHP:
<!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" />
<
title>Ejemplo</title>

<
style type="text/css">
body {
    
margin-left0px;
    
margin-top0px;
    
margin-right0px;
    
margin-bottom0px;
}

*{
    
font-familysans-serif;
    
font-size13px;
    
color#333;
}

a:link {
    
text-decoration:none;
    
font-weight:bold;
}
a:visited {
    
text-decoration:none;
    
font-weight:bold;
}
a:active {
    
text-decoration:underline;
}
a:hover {
    
text-decoration:underline;
}

.
contenedor
{
    
width:1000px;
    
margin-left:auto;
    
margin-right:auto;
}

#izquierda
{
    
width:750px;
    
float:left;
}

#derecha
{
    
width:250px;
    
float:left;
}
</
style>

</
head>

<
body>
<
div class="contenedor">

<
div id="izquierda">
<
img src="entrada.jpg" alt="Ejemplo" width="750" height="600" border="0" />
</
div>

<
div id="derecha">
<
div>
<
img src="entrada.jpg" alt="Ejemplo" width="250" height="300" border="0" />
</
div>
<
div style="text-align:center">
<
p>&nbsp;</p>
<
p>&nbsp;</p>
<
p>Texto y mas texto.</p>
<
form action="prueba.php" method="post"
<
label>Buscar:</label><input type="text" name="perfil" /> <input type="submit" name="enviar" value="Enviar" /> 
</
form>
</
div>
</
div>
</
div>


<
div class="contenedor" style="text-align:center">
<
p style="font-size:18px; font-family:sans-serif"><a href="politicadeprivacidad.php" target="_self">Politica de Privacidad</a></p>

</
body>
</
html