Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.

    GIF shows where to locate </> in the thread and or post editor toolbar.
    To learn more about how to use our BBCode feature, review our "How to post your code into threads" here.

    Thank you, Code Forum.

HTML & CSS Resize a img in a div that needs a specific position on page

Cutty382

New Coder
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>
 
The width of 100% on the image means it will fill 100% of the div it sits inside of, however you don't have a size set on the div. You can use viewport width to set the width as a percentage of the browser width, such as width: 50vw which is 50% of the browser width.

 
HTML:
<!DOCTYPE html>

<html lang="en">

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Resize Image</title>
    
    <style>
        #hand_holder{
            width: 20%;
            position: fixed;
            top: 0;
            right: 0;
            border: 2px solid red;
        }
        #hand_holder img {
            display: block;
            max-width: 100%;
        }
    </style>
</head>

<body>
    <div id="hand_holder"><img src="3.JPG"></div>
</body>

</html>
 

Buy us a coffee!

Buy me a coffee.
Back
Top Bottom