l am having a little bit of trouble positioning stuff with css and html, l have a bottom bar and in this bottom bar l have three links one on the left one in the center and one on the right, no l need to position them in three ways, l need to set how high they are from the (top or bottom, preferably bottom) of the page how far left they are. So far l have this in my HTML:
<table id="bottombar" border="0" width="100%">
<tr>
<td width="50%">Site map</td>
<td width="50%">Copyright</td>
<td width="50%">Disclamer</td>
</tr>
</table>
And this in my Css:
table.bottombar {
width:110px;
height:90px;
}
But none of the positioning is working really, so is there anyone that can help me?