blob: df8576ca2b24a14b180589cae06a0ed4f341070c (
plain)
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
|
<html>
<body>
<h3>colspan=2,cellspacing=100</h3>
This table will not resize to one word because the cellspacing is
larger than its minimum word size.
<table border=1 cellspacing=100 bgcolor=lightgreen>
<TR>
<TD colspan=2> Cell, and stuff to test out table cell layout. This
should be long enough for testing. </TD></TR>
</table>
<br> This table has cell(min,max) < cellspacing
<table border=1 cellspacing=100 bgcolor=lightgreen>
<TR>
<TD colspan=2>C</TD></TR>
</table>
<br> This table has cell(min,max) < cellspacing
<table border=1 cellspacing=100 bgcolor=lightgreen>
<TR>
<TD colspan=3>A</TD></TR>
<tr><td>1<td>2<td>3
</table>
<br> This table has colspan=100
<table border=1 cellspacing=4 bgcolor=lightgreen>
<TR>
<TD colspan=100>A</TD></TR>
</table>
</body>
</html>
|