jsp表格的border-collapse属性没有效果,单元格边框为什么没有合并?

![图片说明](https://img-ask.csdn.net/upload/201505/25/1432559601_864739.png)图片说明

图片说明

border-collapse是style,不是直接放在table属性中,如下

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3c.org/1999/xhtml">
<head>
<style type="text/css">

table
  {
  border-collapse:collapse;
  }
table, td, th
  {
  border:1px solid black;
  }
</style>
</head>

<body>
<table cellspacing=0 >
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Bill</td>
<td>Gates</td>
</tr>
<tr>
<td>Steven</td>
<td>Jobs</td>
</tr>
</table>
</body>
</html>

图片说明