|
1 <html> |
|
2 <head><style> |
|
3 table { width: 600px; } |
|
4 td.smallSpec { width: 100px; } |
|
5 td.bigSpec { width: 500px; } |
|
6 td.smallPct { width: 10%; } |
|
7 td.bigPct { width: 90%; } |
|
8 td.pink { background: pink; } |
|
9 td.teal { background: teal; } |
|
10 </style></head> |
|
11 <body> |
|
12 |
|
13 <h2>Other column fixed-width; two zero columns with colspan; explicit 0 width on span</h2> |
|
14 |
|
15 <table cellspacing="0" cellpadding="0"> |
|
16 <tr> |
|
17 <td class="smallSpec pink">100</td> |
|
18 <td class="bigSpec teal"/> |
|
19 </tr> |
|
20 </table> |
|
21 |
|
22 <h2>Other column percent-width; two zero columns with colspan; explicit 0 width on span</h2> |
|
23 |
|
24 <table cellspacing="0" cellpadding="0"> |
|
25 <tr> |
|
26 <td class="smallPct pink">10%</td> |
|
27 <td class="bigPct teal"/> |
|
28 </tr> |
|
29 </table> |
|
30 |
|
31 <h2>Other column fixed-width; zero-column explicitly zero-width; zero column spanned by colspan (crossing other column)</h2> |
|
32 |
|
33 <table cellspacing="0" cellpadding="0"> |
|
34 <tr> |
|
35 <td class="pink">100</td> |
|
36 </tr> |
|
37 </table> |
|
38 |
|
39 <h2>Other column percent-width; zero-column explicitly zero-width; zero column spanned by colspan (crossing other column)</h2> |
|
40 |
|
41 <table cellspacing="0" cellpadding="0"> |
|
42 <tr> |
|
43 <td class="pink">10%</td> |
|
44 </tr> |
|
45 </table> |
|
46 |
|
47 </body> |
|
48 </html> |