I'm trying to make it so that I have a link at the left side of a page then 3 more in the middle except I want them to be inline.
Example:
link link link link
I'm using a table and I put align="center" for the center links but I'm not sure how to make the other link align to the left of the table cell.
I've already tried to use absolute position in css but it doesn't work out the way I want it. Any help would be greatly appretiated, thanx in advance!
Example:
link link link link
I'm using a table and I put align="center" for the center links but I'm not sure how to make the other link align to the left of the table cell.
Code:
<tr valign="bottom" align="center">
<td colspan="9">
<a href="link1">left link</a> <== I want this to align left corner of the cell
<a href="link2">center link</a>
<a href="link3">center link</a>
<a href="link4">center link</a>
</td>
</tr>
I've already tried to use absolute position in css but it doesn't work out the way I want it. Any help would be greatly appretiated, thanx in advance!