HTML - Problema con el codigo

 
Vista:
sin imagen de perfil

Problema con el codigo

Publicado por José (7 intervenciones) el 07/01/2014 17:10:58
Hola a todos me presento en este foro, soy José y este es mi primer mensage. Estoy haciendo un curso de html y tengo un ejercicio basico del que espero me podais ayudar.
El siguiente codigo es de la creacion de un formulario, y necesito que la imagen no se mueva al expandir el cuadro de texto del mensaje. ¿Me podeis ayudar? Un saludo y Gracias.

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<html>
 
<head><title>Formulario contacto</title></head>
 
<body>
 
<table align="center">
 
<form action="mailto:josfrances88@gmail.com" method="post" enctype="text/plain">
 
 <tr>
 
	<td><h1>Contacto</h1></td>
 
 </tr>
 
 <tr>
	<td><p>Si deseas comunicarte con nosotros, por favor llena este formulario:</p></td>
	<td colspan="5" rowspan="5"><img src="formulario.jpg">
 
 </tr>
 
 
 
 <tr>
 
 
	<td>Nombre:</td>
 
 </tr>
 
 	<td><input type="text" name="nombre" size="30" maxlength="100"></td>
 
 <tr>
 
	<td>Email</td>
 
 </tr>
 
 <tr>
 
	<td><input type="text" name="email" size="30" maxlength="100" value="@"></td>
 
 </tr>
 
 <tr>
 
	<td>Tema:</td>
 
 </tr>
 
 <tr>
 
	<td><select name="tema">
 
  	<option value="1">Comentarios y sugerencias
 
  	<option value="2">Soporte
 
 	</select></td>
 
 </tr>
 
 <tr>
 
	<td>Mensaje:</td>
 
 </tr>
 
 <tr>
 
	<td><textarea cols="30" rows="7" name="mensaje"></textarea></td>
 
 </tr>
 
 <tr>
 
	<td>Enviarte una copia?</td>
 
 </tr>
 
 <tr>
 
	<td><input type="checkbox" name="copia"></td>
 
 </tr>
 
 <tr>
 
	<td><input type="submit" value="enviar"></td>
 
 </tr>
 
</form>
 
</table>
 
</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 el codigo

Publicado por xve (1543 intervenciones) el 07/01/2014 19:09:37
Hola Jose, tienes puesta la imagen dentro de un <td> por lo que siempre te crecerá... si no quieres que lo haga, tendrías que crear una tabla dentro de la tabla que tienes...

Yo te recomendaría que en vez de utilizar tablas, utilices div's...

te lo he modificado añadiendo la nueva tabla...
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
48
49
50
51
52
53
54
55
56
57
58
59
<html>
 
<head><title>Formulario contacto</title></head>
 
<body>
 
<form action="mailto:josfrances88@gmail.com" method="post" enctype="text/plain">
    <table align="center">
        <tr>
            <td><h1>Contacto</h1></td>
        </tr>
        <tr>
            <td>
                <table>
                    <tr>
                        <td><p>Si deseas comunicarte con nosotros, por favor llena este formulario:</p></td>
                        <td rowspan="5"><img src="formulario.jpg"></td>
                    </tr>
                    <tr>
                        <td>Nombre:</td>
                    </tr>
                        <td><input type="text" name="nombre" size="30" maxlength="100"></td>
                    <tr>
                        <td>Email</td>
                    </tr>
                    <tr>
                        <td><input type="text" name="email" size="30" maxlength="100" value="@"></td>
                    </tr>
                </table>
            </td>
        <tr>
            <td>Tema:</td>
        </tr>
        <tr>
            <td><select name="tema">
            <option value="1">Comentarios y sugerencias
            <option value="2">Soporte
            </select></td>
        </tr>
        <tr>
            <td>Mensaje:</td>
        </tr>
        <tr>
            <td><textarea cols="30" rows="7" name="mensaje"></textarea></td>
        </tr>
        <tr>
            <td>Enviarte una copia?</td>
        </tr>
        <tr>
            <td><input type="checkbox" name="copia"></td>
        </tr>
        <tr>
            <td><input type="submit" value="enviar"></td>
        </tr>
    </table>
</form>
 
</body>
</html>

Coméntanos si te sirve, ok?
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar
sin imagen de perfil

Problema con el codigo

Publicado por José (7 intervenciones) el 07/01/2014 19:40:01
Vale perfecto xve, muchas gracias es justo lo que necesitaba. Los div's aun no los he utilizado pero los probare.
Por cierto yo utilizo el bloc de notas pero me deja las tabulaciones muy grandes, me sabrias decir como modificarlas?
Un saludo y muchas gracias por todo!
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 el codigo

Publicado por xve (1543 intervenciones) el 07/01/2014 21:08:20
Hola José, yo te recomendaría utilizar el Notepad++, es un editor de texto que va muy bien, es gratuito, y te marcara el codigo HTML, CSS y JavaScript... es perfecto para empezar...
http://notepad-plus-plus.org/

Espero que te sirva.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar
sin imagen de perfil

Problema con el codigo

Publicado por José (7 intervenciones) el 07/01/2014 22:15:14
Impresionante, no hay color, menuda maravilla xD. Muchas gracias la verdad esque se agradece el cambio al bloc de notas. Ahora estoy metido con otro ejercicio que es una especie de sudoku pero no consigo juntar los bordes, no entiendo porque me aparece entre cada <td> un fino borde con espacio en blanco. Yo pretendo que todo sea un unico borde y que esos espacios en blanco desaparezcan, quedando un borde exterior mas marcado, tambien es porque me han dicho que debo hacerlo asi pero nose donde esta el fallo.
Un saludo y muchisimas gracias por la ayuda.

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<html>
 
<head><title>Ejercicio Tabla 1</title><head>
 
<body>
		 <table frame="box" border="2" cellpading="0" cellspacing="0"  width="80">
				<tr>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
				</tr>
				<tr>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
				</tr>
				<tr>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
					<td>
						<table frame="box" border="3" cellpading="0" cellspacing="0"  width="80">
							<tr align=center>
								<td>5</td>
								<td>3</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>6</td>
								<td>&nbsp;</td>
								<td>&nbsp;</td>
							</tr>
							<tr align=center>
								<td>&nbsp;</td>
								<td>9</td>
								<td>8</td>
							</tr>
						</table>
					</td>
				</tr>
			</table>
       </body>
</html>
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 el codigo

Publicado por xve (1543 intervenciones) el 08/01/2014 07:25:05
Hola José, reemplaza tu cabecera:
1
<head><title>Ejercicio Tabla 1</title><head>

por esta:
1
2
3
4
5
<head><title>Ejercicio Tabla 1</title>
<style>
td {padding:0px;}
</style>
</head>

Veras como ya no te aparece dicho margen...
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar
sin imagen de perfil

Problema con el codigo

Publicado por José (7 intervenciones) el 08/01/2014 12:30:27
Ok gracias, eso creo que servira, te digo cuando me lo corrijan xD. Ahora el problema esque se me queda las casillas descuadradas y cada una de un tamaño. ¿A que se debe eso?

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<html>
<head><style> td {padding:0px;} </style><title>Ejercicio Tabla 1</title></head>
<body>
	<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
		<tr>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>5</td>
						<td>3</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>6</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>9</td>
						<td>8</td>
					</tr>
				</table>
			</td>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>&nbsp;</td>
						<td>7</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>1</td>
						<td>9</td>
						<td>5</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
				</table>
			</td>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>6</td>
						<td>&nbsp;</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>8</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>4</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>7</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
				</table>
			</td>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>&nbsp;</td>
						<td>6</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>8</td>
						<td>&nbsp;</td>
						<td>3</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>2</td>
						<td>&nbsp;</td>
					</tr>
				</table>
			</td>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>3</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>1</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>6</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>&nbsp;</td>
						<td>6</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
				</table>
			</td>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>4</td>
						<td>1</td>
						<td>9</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>8</td>
						<td>&nbsp;</td>
					</tr>
				</table>
			</td>
			<td>
				<table frame="box" border="3" cellpading="0" cellspacing="0" width="80">
					<tr align=center>
						<td>2</td>
						<td>8</td>
						<td>&nbsp;</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>5</td>
					</tr>
					<tr align=center>
						<td>&nbsp;</td>
						<td>7</td>
						<td>9</td>
					</tr>
				</table>
			</td>
		</tr>
	</table>
</body>
</html>
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 el codigo

Publicado por José (7 intervenciones) el 08/01/2014 19:54:39
Estoy intentando cambiar el tamaño de las tablas pero hay en ciertos campos que no surte efecto y no entiendo porque, por ejemplo le aplico tanto por cien, en vez de un numero fijo y hay tablas que me las cambia y sin embargo otras que contienen numeros no, siempre deja un tamaño fijo.
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 el codigo

Publicado por xve (1543 intervenciones) el 09/01/2014 08:11:59
Hola Jose, ponle una anchura del 33%... como siempre son 3 casillas...
1
td {padding:0px;width:33%}

Coméntanos, ok?
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar
sin imagen de perfil

Problema con el codigo

Publicado por José (7 intervenciones) el 09/01/2014 09:52:02
Vale ahora el sudoku queda perfeceto muchas gracias, pero puedo aplicar el estilo a un determinado codigo?. Quiero decir que no me aplique el estilo a toda la pagina porque el ejercicio completo es una lista con varios tipos die tablas y claro al colocar el estilo me modifica el resto de tablas.
Un saludo y muchas gracias por todo.

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<html>
<head><style> td {padding:0px;width:33%} table {border: black 2px solid;} </style><title>Ejercicio Tabla 1</title></head>
<body>
	<ol>
		<li>Tabla 1
			</br>
				<table frame="box" border="0" cellpading="0" cellspacing="0" width="80">
					<tr>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>5</td>
									<td>3</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>6</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>9</td>
									<td>8</td>
								</tr>
							</table>
						</td>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>&nbsp;</td>
									<td>7</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>1</td>
									<td>9</td>
									<td>5</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
							</table>
						</td>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>6</td>
									<td>&nbsp;</td>
								</tr>
							</table>
						</td>
					</tr>
					<tr>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>8</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>4</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>7</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
							</table>
						</td>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>&nbsp;</td>
									<td>6</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>8</td>
									<td>&nbsp;</td>
									<td>3</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>2</td>
									<td>&nbsp;</td>
								</tr>
							</table>
						</td>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>3</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>1</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>6</td>
								</tr>
							</table>
						</td>
					</tr>
					<tr>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>&nbsp;</td>
									<td>6</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
							</table>
						</td>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>4</td>
									<td>1</td>
									<td>9</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>8</td>
									<td>&nbsp;</td>
								</tr>
							</table>
						</td>
						<td>
							<table frame="box" border="1" cellpading="0" cellspacing="0" width="80">
								<tr align=center>
									<td>2</td>
									<td>8</td>
									<td>&nbsp;</td>
								</tr>
								<tr align=center>
									<td>&nbsp;</td>
									<td>&nbsp;</td>
									<td>5</td>
								</tr>
									<tr align=center>
									<td>&nbsp;</td>
									<td>7</td>
									<td>9</td>
								</tr>
							</table>
						</td>
					</tr>
				</table>
			</br>
		<li>Tabla 2
			</br>
				<table border="1" cellspacing="0" width="200">
					<tr>
						<th colspan="3">&nbsp;</th>
					</tr>
					<tr>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td rowspan="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
					</tr>
					<tr>
						<td colspan="2">&nbsp;</td>
					</tr>
					<tr>
						<td colspan="3">&nbsp;</td>
					</tr>
				</table>
			</br>
		</li>
		<li>Tabla 3
			</br>
				<table border="1" cellspacing="0" width="200">
					<tr>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
						<td colspan="2">&nbsp;</td>
					</tr>
					<tr>
						<td colspan="2" rowspan="4">&nbsp;</td>
						<td colspan="2" rowspan="3">&nbsp;</td>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr>
						<td>&nbsp;</td>
						<td>&nbsp;</td>
					</tr>
					<tr>
						<td colspan="2">&nbsp;</td>
					</tr>
					<tr>
						<td colspan="4">&nbsp;</td>
					</tr>
				</table>
			</br>
		</li>
		<li>Tabla 4
			</br>
				<table border="1" cellspacing="0" width="400">
					<tr>
						<th align="center" colspan="23">NUMEROS Y LETRAS</th>
					</tr>
					<tr align="center">
						<td colspan="5">G</td>
						<td>9</td>
						<td>6</td>
						<td rowspan="2">L</td>
						<td>1</td>
						<td>2</td>
						<td>3</td>
						<td>4</td>
						<td>5</td>
						<td rowspan="2">M</td>
						<td>8</td>
						<td rowspan="2">J</td>
						<td colspan="3">H</td>
						<td rowspan="2">P</td>
						<td>2</td>
						<td>1</td>
						<td rowspan="2">A</td>
					</tr>
					<tr align="center">
						<td>1</td>
						<td>2</td>
						<td>3</td>
						<td>4</td>
						<td>5</td>
						<td>6</td>
						<td>7</td>
						<td>5</td>
						<td colspan="3">F</td>
						<td>8</td>
						<td>3</td>
						<td>9</td>
						<td>7</td>
						<td>6</td>
						<td>1</td>
						<td>1</td>
					</tr>
				</table>
			</br>
		</li>
	</ol>
</body>
 
</html>
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 el codigo

Publicado por xve (1543 intervenciones) el 09/01/2014 15:07:23
Si claro, para ello, puedes utilizar una class de css... algo así:
1
<style>.sudoku td {padding:0px;width:33%} table {border: black 2px solid;} </style>

y en el form añades dicha clase...
1
<table frame="box" border="2" cellpading="0" cellspacing="0"  width="80" class="sudoku">

Espero que te sirva... no lo he probado...
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar
sin imagen de perfil

Problema con el codigo

Publicado por José (7 intervenciones) el 09/01/2014 20:20:31
Me sirve a la perfección, tal cual lo has puesto, tambien me he creado una para table con .sudoku table para el borde.
Muchas gracias por la ayuda.
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 el codigo

Publicado por xve (1543 intervenciones) el 09/01/2014 22:07:31
Me alegra haberte ayuda... gracias por comentarlo!!!
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar