table html border

Solutions on MaxInterview for table html border by the best coders in the world

showing results for - "table html border"
Lydia
21 Jan 2020
1table, th, td {
2  border: 1px solid black;
3}
Jaime
01 May 2016
1<table>
2  <tr> <!-- This is the first row -->
3    <th>This is the heading</th>
4    <th>Next heading to the right</th>
5  </tr>
6  <tr> <!-- This is the second row -->
7    <td>This is where the table data goes</td>
8    <td>This is the second columns data</td>
9  </tr>
10</table>
Joy
30 Feb 2018
1<table border>
2    <thead>
3        <tr>
4            <td>To</td>
5            <td>date</td>
6            <td>message</td>
7        </tr>
8    </thead>
9    <tbody>
10        <tr>
11            <td>Join</td>
12            <td>24/02/2021 13:00 PM</td>
13            <td>Thank you for share your pen with me</td>
14        </tr>
15      	<tr>
16            <td>Harry</td>
17            <td>24/02/2021 13:00 PM</td>
18            <td>Thank you for share your magic wand with me</td>
19        </tr>
20    </tbody>
21</table>
similar questions
queries leading to this page
table html border