jsp问题
在我所编写的如下程序中为何表格的第三行的长度要随着第一行长度的改变而改变,第三行是导航栏,我想让每个表格的宽度为175,但是实现不了,表格老是在动,怎么办呢?<%@ page contentType="text/html;charset="gb2312"%>
<html>
<head>
<title>我的网站</title>
</head>
<body>
<table align="center" border="1" bgcolor="lightblue" width="900" height="700" >
<tr>
<td height="100" width="900">gew</td>
</tr>
<tr>
<td height="3"></td>
</tr>
<tr>
<td width="175" height="30">wer</td>
<td width="175" height="30">dssd</td>
<td width="175" height="30">tyuj</td>
<td width="175" height="30">jsp</td>
<td width="175" height="30">gjyt</td>
</tr>
<tr>
<td height="450" width="300"></td>
<td height="450" width="300"></td>
<td height="450" width="300"></td>
</tr>
</table>
</body>
</html>