HTML Element Style How to - Add border to table cell bottom








Question

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

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
table {<!-- w  ww.ja  v a  2s.  c  o m-->
  border-collapse: collapse;
}

td {
  border-bottom-style: solid;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>Test</td>
      <td>Test</td>
    </tr>
    <tr>
      <td>Test</td>
    </tr>
  </table>
</body>
</html>

The code above is rendered as follows: