HTML - PROBLEMA CON LA PROPIEDAD SCROLL

 
Vista:
sin imagen de perfil

PROBLEMA CON LA PROPIEDAD SCROLL

Publicado por Tomas (34 intervenciones) el 22/01/2014 17:53:56
Necesito que la tabla tenga la propiedad srcoll pero no funciona, las imagenes que tengo dentro abarcan la web entera, yo quiero que se vean las 2 barras y que solo se mueva lo de dentro.
he includio las imagenes y el css en el archivo.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
	<head>
<link href="estilo.css" type="text/css" rel="StyleSheet">
 
 
	</head>
	<body >
                <div id="upbar" >
 
 
		</div>
		<table style="overflow:scroll">
		<tr>
			<td><img src=""></img></td>
			<td><img src=""></img></td>
			<td><img src=""></img></td>
		</tr>
			<td><img src=""></img></td>
			<td><img src="></img></td>
			<td><img src=""></img></td>
		<tr>
			<td><img src=""></img></td>
			<td><img src=""></img></td>
			<td><img src=""></img></td>
		</tr>
		</table>
		<div id="bottombar">

		</div>
	</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de xve
Val: 1.144
Oro
Ha mantenido su posición en HTML (en relación al último mes)
Gráfica de HTML

PROBLEMA CON LA PROPIEDAD SCROLL

Publicado por xve (1543 intervenciones) el 22/01/2014 22:25:48
Hola Tomas, tienes varios errores de html... mira este código como te lo he dejado:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="utf-8">
    <style>
        body{
        background:url(fondo3.png);
        background-size:cover;
        background-repeat:no-repeat
 
        }
        img{
        width:200px;
        heigth:200px;
        margin-left:170px;
        border:1px solid;
        }
        table{}
 
        .contenidoScroll {display:block;width:100px;height:100px;overflow:scroll;border:1px solid;}
    </style>
</head>
 
<body>
    <div id="upbar" >
    </div>
    <table class="contenidoScroll">
        <tr>
            <td><img src=""></td>
            <td><img src=""></td>
            <td><img src=""></td>
        </tr>
        <tr>
            <td><img src=""></td>
            <td><img src=""></td>
            <td><img src=""></td>
        </tr>
        <tr>
            <td><img src=""></td>
            <td><img src=""></td>
            <td><img src=""></td>
        </tr>
    </table>
    <div id="bottombar">
    </div>
</body>
</html>

Saludos
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

PROBLEMA CON LA PROPIEDAD SCROLL

Publicado por Tomas (34 intervenciones) el 25/01/2014 16:25:56
no me funciona
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de xve
Val: 1.144
Oro
Ha mantenido su posición en HTML (en relación al último mes)
Gráfica de HTML

PROBLEMA CON LA PROPIEDAD SCROLL

Publicado por xve (1543 intervenciones) el 25/01/2014 19:39:14
Hola Tomas que no te funciona? a mi si me funciona!!!
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

PROBLEMA CON LA PROPIEDAD SCROLL

Publicado por Tomas (34 intervenciones) el 26/01/2014 15:28:27
OK gracias entonces, seguiré probando, nose que hago mal.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar