I've been trying to adjust the position of a table in my project that contains an image. Currently, it is aligned to the left and I want to move it to the right. Here is the code for my table:
<TD>
<IMG SRC='http://farm8.staticflickr.com/7209/6978440877_10b1fcffc4_o.jpg'/>
</TD>
What modifications should I make? I attempted to use some CSS like:
position:absolute; z-index:2; left: 50px; top: 1040px;
-but it just displayed as text on the page. What steps should I take to properly position my table as desired?