怎样让table没有边框

<table boder="0" cellpadding="0" cellspacing="0">

  <tr>

  <td></td>

  </tr>

  <tr>

  <td></td>

  </tr>

  </table>

 

 

设置table boder、cellpadding、cellspacing 属性为0,就可以去除最外层Table边框啦了,

如果要去除 table 中 td的边框 ,可设置css: table tr td{border:none;}

原文地址:https://www.cnblogs.com/z-y-z/p/3571842.html