码迷,mamicode.com
首页 > 其他好文 > 详细

table单元格设置细边框

时间:2014-08-11 15:25:52      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   html   htm   size   type   

设置table的CSS为{border-collapse:collapse;border:none;},

再设置td的CSS为{border:solid #000 1px;},

 
<!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>导航页档</title>
<style type="text/css">
table
{
border-collapse: collapse;
border: none;
width: 200px;
}
td
{
border: solid #000 1px;
}
</style>
</head>
<body>
<table>
<tr>
<td>
军事
</td>
<td>
历史
</td>
<td>
新闻
</td>
</tr>
<tr>
<td>
军事
</td>
<td>
历史
</td>
<td>
新闻
</td>
</tr>
</table>
</body>
</html> 

table单元格设置细边框,布布扣,bubuko.com

table单元格设置细边框

标签:style   http   io   ar   html   htm   size   type   

原文地址:http://my.oschina.net/nly/blog/300005

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!