blob: effc740153d394d458da652c5da929c47077d4de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html401/loose.dtd">
<html>
<head>
<title>Table with percent width except in one column</title>
</head>
<body style="width: 400px">
<table width="400" cellspacing=0 cellpadding=0 border=0>
<tr>
<td style="background:pink" width="100"></td>
<td style="background:lightgreen" width="200">
This is the middle row, which should measure half the table
width.
</td>
<td style="background:pink" width="100"></td>
</tr>
</table>
</body>
</html>
|