I want to align the contents of a column cell in a table so that the text is on the left and the image is on the right. The HTML snippet I have currently, which does not work is:
<td align="justify">
<a href="addsystems.php">Add Sys</a>
<img src="../img/folder.gif" width="20" height="20" />
</td>
I thought about creating a new column cell to hold the icon, which would get around this problem.e.g.
<td align="left">
<a href="addsystems.php">Add Sys</a>
</td>
<td align="right">
<img src="../img/folder.gif" width="20" height="20" />
</td>
But was wondering if it is possible to do in just one column cell.
Any suggestions as to how to achieve this much appreciated.
Gavin
<td align="justify">
<a href="addsystems.php">Add Sys</a>
<img src="../img/folder.gif" width="20" height="20" />
</td>
I thought about creating a new column cell to hold the icon, which would get around this problem.e.g.
<td align="left">
<a href="addsystems.php">Add Sys</a>
</td>
<td align="right">
<img src="../img/folder.gif" width="20" height="20" />
</td>
But was wondering if it is possible to do in just one column cell.
Any suggestions as to how to achieve this much appreciated.
Gavin