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 7218197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T21:27:05+00:00 2026-05-28T21:27:05+00:00

I’d like a scaleable/flexible fullscreen inline image (no cropping) that will allow for content

  • 0

I’d like a scaleable/flexible fullscreen inline image (no cropping) that will allow for content to sit beneath it just like any other webpage. Is this possible? All I keep seeing is solutions for position:fixed; which, isn’t feasible for me.

I have been playing around with the code over at: http://css-tricks.com/perfect-full-page-background-image/ but modifying them to do what I want doesn’t seem to work. The scaling of the image is all wrong and often crops the image, which again isn’t what i’d like it to do.

Here is the code for as a rough idea:

<!DOCTYPE html>

<html>
<head>
<title></title>
</head>

<body>
<!-- full width and height image -->
<div id="feature-wrapper">
   <img src="img/feature.jpg"/>
</div>
<!-- /end fullwidth/height image -->

<!-- lots of content that sits directly beneath big image -->
<img src="img/about-mug.jpg"/>

<img src="img/project1.jpg"/>

<p>Some more content beneath feature</p>

</body>
</html>

Any pointers appreciated. jQuery solutions welcome 🙂

  • 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-05-28T21:27:06+00:00Added an answer on May 28, 2026 at 9:27 pm
    #feature-wrapper img {
        width  : 100%;
        height : auto;
    }
    

    This will keep the image inline with the rest of the content; a larger image will push content lower than a smaller one (based on screen-size). This will also keep the aspect ratio of the image intact.

    Here is a demo: http://jsfiddle.net/qzvXa/ (Notice how the image re-sizes and the content below shifts as you re-size the page)

    Update

    The link you provided is for creating a fullscreen background image, if you want to do that but keep the aspect ratio of your image then you can set the image’s container to position : absolute or position : fixed and still retain the aspect ratio for the image:

    /*set our fullscreen background image's width/height and z-index to something low*/
    #feature-wrapper img {
        width   : 100%;
        height  : auto;
        z-index : 1;
    }
    
    /*set our container's z-index to the same as the image it contains and make this element stretch the whole page*/
    #feature-wrapper {
        z-index  : 1;
        position : absolute;
        top      : 0;
        left     : 0;
        right    : 0;
        bottom   : 0;
    }
    
    /*you have to make sure your content will actually display over the background image,
    `position : relative` is necessary because z-index isn't applied to elements with `position : static`*/
    img, p {
        position : relative;
        z-index  : 2;
    }
    

    Here is a demo: http://jsfiddle.net/qzvXa/1/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I need a function that will clean a strings' special characters. I do NOT
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
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.