Os propongo una pregunta, que para mi, no se porque extraña circustancia, está siendo un reto.
Estoy intentando crear una estructura básica de HTML, por medio de tablas, que genere scroll horizontal.
Mi código, hasta el momento es:
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Prueba</title> <link rel="STYLESHEET" type="text/css" href="css/estilos.css"> </head> <body style="padding:0;margin:0;background-color:#000000"> <table cellpadding="0" cellspacing="0" style="width:100%;height:390px" border="0"> <tr> <td class="sp" width="100%" height="390" valign="top" align="left" style="background-image:url(img/px_fondo_central.gif);"> <!-- Contenedor Central --> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td class="sp" width="2000" height="100" valign="top" bgcolor="#008000"> </td> </tr> </table> <!-- Fin del Contenedor Central --> </td> </tr> </table> </body> </html>
He probado a poner 3 y 4 TD con 2000 PX de ancho, y lo que hace es repartirse el tamaño... en vez de empujar uno a otro...
Si alguien puede explicarme el porque le estaría muy agradecido.
Saludos