元问答栏目视频美女
  1. 编程问答
  2. 答案列表

css 给table加内外边框 防止重复

回答列表
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
table {
border-collapse:collapse;
}
table,td,th {
border:1px solid black;
}
</style>
</head>
<body>
<table>
<tr>
<th>firstname</th>
<th>lastname</th>
</tr>
<tr>
<td>peter</td>
<td>griffin</td>
</tr>
<tr>
<td>lois</td>
<td>griffin</td>
</tr>
</table>
<p><b>注意:</b>如果没有指定!doctype border-collapse 属性在 ie8 及更早 ie 版本中是不起作用的。</p>
</body>
</html>
猜你喜欢
相关推荐