如何在html中删除表格中的空格行和列

在我的html页面中,我有一个表,每行都有两个按钮,我希望在行和列之间没有任何空格显示它们,即每行的列之间没有空格,表格中两行之间没有空格。 我怎样才能得到这个? 我尝试过

<table>
     <tr>
          <td colspan = 2><a data-role="button" href = "getFun()" >check</a></td>
     </tr>
     <tr>                               
          <td><a data-role = "button"   href = "getFun()">check</a></td>                               
          <td><a data-role = "button"  href = "getFun()">check</a> </td>
     </tr>
     <tr>
          <td><a data-role = "button" href = "getFun()">check</a></td>
          <td><a data-role = "button" href = "getFun()">check</a></td>
     </tr>
 </table>

table{
    border-spacing:0;
    border-collapse:collapse;
}

但它不适合我。 请告诉我解决方案。 我编辑了我的代码。 请找到它


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

http://jsfiddle.net/Curt/5rkpy/

链接地址: http://www.djcxy.com/p/94721.html

上一篇: How to remove space rows and columns in table in html

下一篇: Reducing the default spacing between html tr tags