Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You have <code>#conatinerWide</code> set with a gray background and I'm assuming you want it to stretch to fill the rest of the are.</p> <p>The thing is <code>html</code> and <code>body</code> will only expand large enough to fit the content you have. So setting those to 100% will tell it to fill the document window; allow your <code>#containerWide</code> to now be 100% available space. </p> <p>Adding <code>html, body { height: 100%; }</code> should achieve what you are wanting</p> <p><a href="http://jsfiddle.net/rtgibbons/P3Ckk/111/" rel="nofollow">http://jsfiddle.net/rtgibbons/P3Ckk/111/</a></p> <p>Update for comments;</p> <p>You for every element you want a <code>min-height:100%</code> to be the size of the window you need to set the <code>height:100%</code> to the parent element. So <code>#containerWide</code> needs <code>height:100%</code> and <code>#container</code> needs <code>min-height:100%; height:100%</code>;. Now the fun part. If you do this same pattern for <code>#exsi</code> and <code>#cont</code> the will be the height of <code>#container</code> and not adjust for the space needed by <code>#foot</code>.</p> <p>Here is where I'd continue at</p> <p><a href="http://jsfiddle.net/rtgibbons/P3Ckk/113/" rel="nofollow">http://jsfiddle.net/rtgibbons/P3Ckk/113/</a></p> <p>Basically, I've set <code>min-height:100%; height:100%</code> on all the parents elements. I've moved <code>#foot</code> out of <code>#container</code> so it will be maxed out with the columns. Then I applied some negative margin-bottom of the Total Height of <code>#foot</code> so it will be sucked up inside <code>#containerWide</code></p> <p>Two caveats. </p> <ol> <li>Padding with 100% was causing <code>#exsi</code> and <code>#cont</code> to expand past <code>#containerWide</code> so removing them and applying them to the inner elements as needed or yet another wrapper.</li> <li>The footer will appear below the fold. This is b/c you are positioning <code>#containerWide</code>; I'll leave this as an exercise for you to figure out.</li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload