Answers for "html td"

CSS
11

table border css

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

table td data in middle

vertical-align: middle
Posted by: Guest on November-26-2020
2

<td> in html

td stands for table data
Posted by: Guest on October-03-2021
3

html th td

<table>
  <tr>
    <th>Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>John</td>
    <td>19</td>
  </tr>
  <tr>
    <td>Chris</td>
    <td>25</td>
  </tr>
</table>
Posted by: Guest on July-17-2021

Browse Popular Code Answers by Language