I need to position a div and have it fixed to the top and the right side of the page and then have the image inside of it scale when the window size changes. I feel like I am missing something simple but for the life of me I can't figure it out. Any help is appreciated.
HTML:
<html>
<head>
<style>
img {
width: 100%;
height: auto;
}
#hand_holder{
position:absolute;
width: auto;
right: 0;
top: 0;
}
</style>
</head>
<body>
<div id="hand_holder"><img src="images/hand.png"></div>
</body>
</html>