If you want your image to stay in the same spot even as you resize the window, you can achieve this by using relative positioning on the parent tag and absolute positioning on the child tag.
By setting the parent tag to have relative positioning and the child tag to have absolute positioning, the position of the image will not change when the window is resized.
<div id="container">
<img id="image" class="imageWrapper"></img>
</div>
<style type="text/css">
#container{
position: relative;
}
.imageWrapper
{
position: absolute;
z-index: -1; // Adjust the value based on whether you want the image above or below the container
top: 100px;
right: 100px;
width: 200px;
height: 100px;
}
</style>