Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8564969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T17:18:57+00:00 2026-06-11T17:18:57+00:00

I’m creating a new HTML5 page that has multiple image layers. The first layer

  • 0

I’m creating a new HTML5 page that has multiple image layers. The first layer is a background layer that is a full screen image (proportional to the screen size).

The second layer is another image object, which I want to be in a fixed position proportional to the first layer; so if I changed the browser size, both of the 2 images would change size so they are proportional one to each other.

Does anyone have any idea how can I do so?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T17:18:58+00:00Added an answer on June 11, 2026 at 5:18 pm

    So, let’s suppose we have a “sky.jpg” background image and a “sun.png” image on top of it.

    Here’s the HTML(5) code:

    <div id="sky">
    <img src="sun.png" id="sun">
    </div>
    

    And here is the responsive CSS:

    #sky {
        width:100%; /* width in percentage, so it will adapt to user's screen */
        height:600px; /* here i've set a fixed height, but maybe it's not what you want */
        background:url(sky.jpg) top center no-repeat;
        text-align:center; /* #sun will be centered, not sure it's what you need */
        background-size:cover;
        -moz-background-size:cover;
    }
    #sun {
        width:15%; /* adjust it to the needed ratio */
        max-width:300px; /* max-width will prevent it from being bigger than the original image */
        min-width:20px; /* min-width is optional */
    }
    

    Live demo (resize the window)


    Notice the background-size property set to cover (more info here).

    It means that the aspect ratio will be preserved to the smallest size such that both its width and its height can completely cover the background positioning area.

    That’s why you need an image bigger than most of resolutions (if it’s a body-background image).

    Other possible values for this property are “contain” and “auto” (have a look at the specs).

    background-size:cover; is not supported by IE8 (that’s why we still add top center for background positioning) and for some FF versions you’ll need a vendor prefix (-moz-)


    Now you can set a width in percentage for #sun, so that it’ll keep a ratio to its containing div. To prevent it from becoming bigger than the original size, you can set a max-width (and eventually a min-width).

    The height of the image will auto-adjust in modern browsers.


    If you don’t want a fixed height on #sky, be sure that its container also has a height different than auto (the default value).

    For example, if #sky is your page background image, you’ve to set:

    html, body { height:100%; }
    #sky { height:100%; }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
Basically, what I'm trying to create is a page of div tags, each has
I've got a string that has curly quotes in it. I'd like to replace
I want use html5's new tag to play a wav file (currently only supported
I'm making a simple page using Google Maps API 3. My first. One marker
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a French site that I want to parse, but am running into

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.