JSFiddle - React, Tailwind, and code Playground

by Ahmad SM

HTML

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
    border: 1px solid black;
}
</style>
</head>
<body>

<h2>Add a border to a table:</h2>

<table>
  <tr>
    <th>Firstaaaaaaaaaaaaaaaaaaaaname</th>
    <th>Lastnamaaaaaaaaaaaaaaaaaaaaaaaaaaae</th>
  </tr>
  <tr>
    <td>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</td>
    <td>Griffinaaaaaa</td>
  </tr>
  <tr>
    <td>Lois</td>
    <td>Griffin</td>
  </tr>
</table>

</body>
</html>