Answers for "html table see all borders"

11

table border css

table, th, td {
  border: 1px solid black;
}
Posted by: Guest on April-14-2020
9

table html tages

<table>
  <tr> <!-- This is the first row -->
    <th>This is the heading</th>
    <th>Next heading to the right</th>
  </tr>
  <tr> <!-- This is the second row -->
    <td>This is where the table data goes</td>
    <td>This is the second columns data</td>
  </tr>
</table>
Posted by: Guest on April-24-2020

Browse Popular Code Answers by Language