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

时间:2012-06-18 10:24:36

标签: html html-table

在我的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;
}

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

1 个答案:

答案 0 :(得分:1)

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

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