写一个简单的<colgroup>的测试
改变<colgroup>中的宽度比例,则相应的td的宽度成对应比例变化
<html>
<head></head>
<body>
<table width="100%" border="1">
<colgroup width=20></colgroup>
<colgroup width=10></colgroup>
<colgroup width=30></colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
</table>
</body>
</html>
改变<colgroup>中的宽度比例,则相应的td的宽度成对应比例变化