Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/03/2006, 13:57
Avatar de el_javi
el_javi
 
Fecha de Ingreso: marzo-2005
Ubicación: MAdrid
Mensajes: 844
Antigüedad: 19 años, 1 mes
Puntos: 10
HTML Horizontal

Buenos días a tod@s.

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">&nbsp;</td>
				</tr>
			</table>
			<!-- Fin del Contenedor Central -->
		</td>
	</tr>
</table>

</body>
</html> 
El problema es que a pesar de que le estoy poniendo un TD con un ancho de 2000 PX, no me saca Scroll Horizontal.

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