一个表单的第一列宽度的控制问题.现在的问题是这个表单当中还嵌入了一个类似搜索网站的显示页码的表单.在最下面.根据搜索结果显示相关总的页面数,比如有75页就显示1到75的数字,点击后直接跳到对应页面.现在困惑的是,如果是10几页的时候还好,表单宽度不会动.但是当数据过多的时候,比如70,80页的时候,表单的宽度会自动变长,所以第一列的宽度会变化.现在想要把第一列的宽度固定下来..各位知不知道有什么好的方法??谢谢了.  代码在下面.中间两个col写*也不行啊...<table width="100%"  border="0" cellspacing="0" cellpadding="3">
<colgroup><col width="75"></colgroup>
<colgroup><col width="165"></colgroup>
<colgroup><col width="165"></colgroup>
<colgroup><col width="60"></colgroup>

      <tr>
<td class="list-title-top-snss" align="center" nowrap>学号</td>
<td class="list-title-top-snss" align="center" nowrap>姓名</td>
<td class="list-title-top-snss" align="center" nowrap>性别<td>
     </tr>
     
      <tr>
<td class="list-title-top-snss" align="center" nowrap><%= rec.getKCd() %></td>
<td class="list-title-top-snss" align="center" nowrap><%= rec.getKName() %></td>
<td class="list-title-top-snss" align="center" nowrap><%= rec.getKSe() %><td>
     </tr>     <table>显示页码的代码</talbe>
</table>