Set the containing table to position: relative; then the position: absolute; of the image contained within it will be relative the the containing table, and not the entire page. Then use the right: 0; on the image.
Centers a 600 pixel wide div on the page, and places an image to the right side of that div, using position:absolute, so it overlaps anything else.
Code:
<body>
<div style="width: 600px; margin: auto; postition: relative;">
<img src="xxx" alt="" style="position: absolute; right: 10px;" />
</div>
</body>