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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:36:37+00:00 2026-05-27T09:36:37+00:00

I found a way to make a div container to occupy at least full

  • 0

I found a way to make a div container to occupy at least full height of a page, by setting min-height: 100%;. However, when I add a nested div and set height: 100%;, it doesn’t stretch to container’s height. Is there a way to fix it?

html, body {
  height: 100%;
  margin: 0;
}

#containment {
  min-height: 100%;
  background: pink;
}

#containment-shadow-left {
  height: 100%;
  background: aqua;
}
<div id="containment">
  <div id="containment-shadow-left">
    Hello World!
  </div>
</div>
  • 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-27T09:36:38+00:00Added an answer on May 27, 2026 at 9:36 am

    This is a reported webkit (chrome/safari) bug, children of parents with min-height can’t inherit the height property: https://bugs.webkit.org/show_bug.cgi?id=26559

    Apparently Firefox is affected too (can’t test in IE at the moment)

    Possible workaround:

    • add position:relative to #containment
    • add position:absolute to #containment-shadow-left

    The bug doesn’t show when the inner element has absolute positioning.

    See http://jsfiddle.net/xrebB/

    Edit on April 10, 2014

    Since I’m currently working on a project for which I really need parent containers with min-height, and child elements inheriting the height of the container, I did some more research.

    First: I’m not so sure anymore whether the current browser behaviour really is a bug. CSS2.1 specs say:

    The percentage is calculated with respect to the height of the
    generated box’s containing block. If the height of the containing
    block is not specified explicitly (i.e., it depends on content
    height), and this element is not absolutely positioned, the value
    computes to ‘auto’.

    If I put a min-height on my container, I’m not explicitly specifying its height – so my element should get an auto height. And that’s exactly what Webkit – and all other browsers – do.

    Second, the workaround I found:

    If I set my container element to display:table with height:inherit it acts exactly the same way as if I’d give it a min-height of 100%. And – more importantly – if I set the child element to display:table-cell it will perfectly inherit the height of the container element – whether it’s 100% or more.

    Full CSS:

    html, body {
      height: 100%;
      margin: 0;
    }
    
    #container {
      background: green;
      display: table;
      height: inherit;
      width: 100%;
    }
    
    #content {
      background: red;
      display: table-cell;
    }
    

    The markup:

    <div id="container">
      <div id="content">
          <p>content</p>
      </div>
    </div>
    

    See http://jsfiddle.net/xrebB/54/.

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

Sidebar

Related Questions

I found many way for redirect to previous page after login and example :
Is there a way to make a certain div autorefresh every minute or so,
I have a problem with setting the height of the div: I have 3
I found a way to write avi from BMP files: http://www.delphi3000.com/articles/article_2770.asp?SK= I want to
Has anyone found a way to get around this? Or a better technique to
Has anyone found a way to save a FlowDocument as BAML or other compressed
I have found the way to copy the record that I would like, but
I've finally found a way to debug classic asp code in visual studio 2008
okay i have found the way to run a video in a image.... the
I have not found any way to successfully set a screen resolution on my

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.