Helo, am creating a table on html of six rows and five columns. But when i launch it, all the data come up on one horizontal line. While i need six horizontal lines. What do i do?
Could you please show us the code you are using? Presumably you are talking about an HTML table, with <table>
, <tr>
and <td>
tags etc?
4 Likes
If you need 6 rows, then you should have 6 times <tr></tr>
so it is better to check if you have mistaken it and have it only once.
Your code should be like this
<table>
<tr>
<td>row value</td>
</tr>
<tr>
<td>row value</td>
</tr>
<tr>
<td>row value</td>
</tr>
<tr>
<td>row value</td>
</tr>
<tr>
<td>row value</td>
</tr>
<tr>
<td>row value</td>
</tr>
</table>
Your code should be like this,Please post your code then we can assist you in better way
Regards,
Christian
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.