Is there a way to keep an image with an href fixed in the top left corner of a webpage without affecting any other content and ensuring it functions consistently across different browsers and DTDs?
I am facing the challenge of needing to provide a code block to multiple websites that will display the same image in the same location for easy access.
I believe I may need to wrap everything within a DIV
element.
<div style="position: absolute;left:0px;top:0px;">
<a href="some.link.com">
<img src="someimage.jpg" alt="someimage">
</a>
</div>
Is this the best solution available?