Pasare a comentaros mi problemas, vereis:
Tengo un DIV principal (un DIV contenedor), en el que tengo, muchos DIV's mas pequeños dentro, todos estos DIV's, interiores, tienen un float:left.
La cuestion es que el DIV principal tiene un overflow:auto, pero cuando los DIV's interiores llegan al fin del DIV contenedor, saltan abajo y no se meten por dentro del DIV.
Ejemplo:
Código HTML:
<div style="width:320px; height:320px; overflow:auto"> <div style="width:80px; height:20px; float:left"> Prueba </div> <div style="width:80px; height:20px; float:left"> Prueba </div> <div style="width:80px; height:20px; float:left"> Prueba </div> <div style="width:80px; height:20px; float:left"> Prueba </div> </div>
He probado muchos estilos, tanto en el DIV principal como en los interiores, pero nada funciona. ¿Que me decis?.
Muchas gracias!!