I am creating a table and this table has 4 rows and two columns, when the second row has more words, the current column scales forward leaving the other rows with spaces.
I left the code here:
<table border="1">
<tr><td>name<td><td>cat</td></tr>
<tr><td>pneumonoultramicroscopicsilicovolcanoconiosis<td><td>vulcano</td></tr>
<tr><td>age<td><td>2 years</td></tr>
<tr><td>sex<td><td>male</td></tr>
</table>
I wanted each row to remain with its column intact, for example:
[name: | cat]
[pneumonoultramicroscopicsilicovolcanoconiosis: | vulcano]
[age: | 2 years]
[sex: | male]
The code is leaving like this:
[name: | cat]
[pneumonoultramicroscopicsilicovolcanoconiosis: | vulcano]
[age: | 2 years]
[sex: | male]
How can I solve this?