首页htmltdHTML Element Style - 如何添加边框到表

HTML Element Style - 如何添加边框到表

我们想知道如何添加边框到表。

<!DOCTYPE html>
<html>
    <head>
    <style>
        table {border-collapse: collapse;}
        table tr {}
        table td {border-spacing: 0px; padding: 0px;}
    </style>

</head>
<body>
    <table>
       <tr>
          <td>
             <a href='url'> some text </a>
          </td>
          <td>
             <a href='url'> some text </a>
          </td>
       </tr>
    </table>
</body>
</html>