Forum Moderators: not2easy
.myTable {
position: absolute;
left: 45px;
top: 50px
}
HTML:
<table class="myTable">
<tr>
<td>...Your text...</td>
</tr>
</table>
The above table would be positioned 45 pixels from the left of the browsers window, and 50 pixels from the top.
Alternatively you can change "left" to "right" so that you can change the positioning absolutely but from the right instead.
I personally usually use the DIV element as a container.