Answers for "html table td column"

1

table row html

<table>
	<tr> <!-- Table Row - 1 -->
    	<td>Column 1</td>
        <td>Column 2</td>
    </tr>
	<tr> <!-- Table Row - 2 -->
    	<td>Column 1</td>
        <td>Column 2</td>
    </tr>
</table>
Posted by: Guest on March-14-2022
0

table columns html

Row:<tr>
Cell:<td>

<table>
	<tr>
    	<td>Cell1</td>
    	<td>Cell2</td>
    	<td>Cell3</td>
	</tr>
</table>

Number of columns is equal to the number of <td> elements in a row.
Posted by: Guest on January-15-2022

Browse Popular Code Answers by Language