0

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

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

4

1 回答 1

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

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

于 2012-06-18T10:25:16.807 回答