blob: 86ece2ce2e2a0449e76bd6040560ab9f29163052 (
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
34
35
36
37
38
|
<html>
<body>
The absolute cell will be resized (same as Firefox).
<table border=1>
<tr>
<td width=400 bgcolor=lightgreen>ABS=400
<td>1<td>2 2<td>3 3 3<td>4 4 4 4<td>5 5 5 5 5
</table>
<!--
-->
<h3> width = auto
<table border=1>
<tr>
<td>word<td>1<td>2 2<td>3 3 3
</table>
<table border=1>
<tr>
<td>word<td>1<td>2 2
</table>
<table width=200 border=1>
<tr><td>ABS=200
</table>
<br>
<br>
</body>
</html>
<br>
<br>
</body>
</html>
|