因为没有用到边框属性,IE可能采用了默认设置.
这样可以完全显示出来,请看:
<html>
<table border="1">
<!--定义一个表格-->
<tr>
<!--定义表格中的一行-->
<td><!--定义这一行中的一列-->
你要显示的数据放在这里
</td>
<td><!--定义这一行中的一列-->
你要显示的数据
</td>
</tr>
<tr>
<!--定义表格中的一行-->
<td><!--定义这一行中的一列-->
显示的数据放在这里
</td>
<td><!--定义这一行中的一列-->
显示的数据
</td>
</tr>
</table>
</html>