I am trying to make a table with vertical columns ,
Is my code makes it how it should implemented ?
<table border="1" cellpadding="5" cellspacing="5" width="100%" style="background color:white;">
<tr>
<th >Table header</th>
<td>Table cell 1</td>
<td>Table cell 2</td>
</tr>
</table>
Try something like below to get multiple rows with multiple columns
You have to add a separate tr tag for each row.