去掉html表格之table间的空隙

<html>
 <head >
  <title > 边线合并</title>
  <style type="text/css">
   body {
    text-align: center;
   }
   table {
     border-collapse:collapse;
    border:1px solid black;
   }
   td {
     border:1px solid black;
   }
  </style>
 </head>
 <body >
  <table>
   <tr >
    <td >fdsafdsa</td>
    <td >fdsafdsa</td>
    <td >fdsafdsa</td>
   </tr>
   <tr >
    <td >fdsafdsa</td>
    <td >fdsafdsa</td>
    <td >fdsafdsa</td>
   </tr>
  </table>
 </body>
</html>

你可能感兴趣的:(去掉html表格之table间的空隙)