Table布局实现仿hr下划线

这篇文章对于前端的大牛们,肯定是没有什么价值的,但是对于一些像我一样的前端菜鸟级的同学来说,说不定会有一些帮助,因为在网络上,很缺少一些特殊需求的解决方案的例子,废话不多说,直接上代码。

<!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">
td{
border-buttom:1px;
border-left:none;
border-right:none;
border-top:none;
}
table{
border:none;
}
</style>
</head>

<body><table width="200" border="1" cellpadding="0" cellspacing="0">
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>

</body>
</html>


需要的同学 可以直接拷贝,运行这段代码。

你可能感兴趣的:(html,css,table)