HTML Element Style How to - Add border to table








Question

We would like to know how to add border to table.

Answer


<!DOCTYPE html>
<html>
    <head>
    <style>
        table {border-collapse: collapse;}
        table tr {}<!--from  ww w. j a  va 2 s  .c  o m-->
        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>

The code above is rendered as follows: