<head>
<style>
<!--collapse属性控制表格是否立体凹陷-->
table.coll
{
border-collapse: collapse
border-color:#999
}
td{border-color:#999}
</style>
</head>
<body>
<table class="coll" border="1" width="300">
<tr>
<td>123456789</td>
<td>123456789</td>
</tr>
<tr>
<td>123456789</td>
<td>123456789</td>
</tr>
</table>
</body>
</html>
会不会是边框重叠造成的呢? 在我的浏览器下显示是正常的,但在IE下似乎也有过类似经历.试试这样定义CSS呢
table{
font-family:Georgia
background-color:black
color:white
border-collapse:collapse
border-left:1px dashed white
border-top:1px dashed white
border-right:0
border-bottom:0
}
th, td {
border-left:0
border-top:0
border-right:1px dashed white
border-bottom:1px dashed white
}