blob: 68d55472ff6ad33ff2fe560fc000ed8a5d232b35 (
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
|
<html><head><title></title></head><body>
<table border=1>
<tr>
<td width=500 bgcolor=silver><b>Width = 500</b><br>
<td>
<table border=1>
<tr>
<td width="10%">10%
<td width="40%">40%
<td>some extra text here
</table>
</table>
width=100%<br>
<table width="100%" border=1>
<tr>
<td width="10%">10%
<td width="40%">40%
<td>some extra text here
</table>
width=AUTO<br>
<table border=1>
<tr>
<td width="10%">10%
<td width="40%">40%
<td>some extra text here
</table>
</body></html>
|