Forum Moderators: phranque
I am very new to tables, and I have a question. I hope I can explain it well enough. Here is an example table that I use:
<tr>
<td width=100% height=20 class=l1a onmouseout="this.className='l1a';">
</b> Some text goes here
</td>
</tr>
The text budges up right to the left side of the table when I look at the page. I am wondering how I can space the text away from the left a little bit.
Thanks in advance!
<tr>
<a href="link3.html">
<td width=100% table cellpadding=10 height=20 class=l1a " onmouseout="this.className='l1a';">
</b> Some text here.....
</td>
</a>
</tr>
But the text is still bunched up right to the side.
<tr>
<a href="link3.html">
<td width...
That doesn't look right at all - the link needs to be in a
td, not just placed after a tr. You should really validate your HTML to avoid any rendering problems: [validator.w3.org...]