我希望在td.i底部有一个边框,使用边框:点缀1px黑色;但在ie7中不可见.td高度为10px。如果我使用&它在ie7中可见。但我不需要那么高的高度。任何人都可以帮助我吗?我的代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.border {
border-bottom-width: 1px;
border-bottom-style: dotted;
border-bottom-color: #0099FF;
margin: 0px;
padding: 0px;
}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
</head>
<body>
<table width="80%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="10" class="border" ></td>
<td height="10" class="border" ></td>
</tr>
</table>
</body>
</html>
答案 0 :(得分:0)
table {
border-collapse: collapse;
}