Ok, I have this table. The problem is that I want the X to appear in the same position that it is in the first cell. How would I go about doing something like that. Here is my code.
<html>
<body>
<table border="1">
<tr>
<tr>
<td>
Helllllllllllllllooo
<span>X</span>
</td>
</tr>
<tr>
<td>
1
<span>X</span>
</td>
</tr>
<tr>
<td>
2
<span>X</span>
</td>
</tr>
<tr>
<td>
3
<span>X</span>
</td>
</tr>
</table>
</body>
</html>
What about
?