HTML <td>
query_builder | Christopher PisaniThe HTML element <td> forms part of element <table>, which displays information given to a cell in a table.
A simple table example showing the element <td>
<style>
table, th, td {
border: 1px solid black;
padding: 10px;
}
</style>
<table>
<tr>
<th>Month</th>
<th>Spending</th>
</tr>
<tr>
<td>MARCH</td>
<td>£100</td>
</tr>
<tr>
<td>APRIL</td>
<td>£120</td>
</tr>
</table>
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.