Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>For that you need to use <code>position: fixed;</code> I think you are looking for this. </p> <p><code>HTML:</code></p> <pre><code>&lt;div id="header"&gt; Header Content &lt;/div&gt; &lt;div id="wrapper"&gt; &lt;div id="leftheader"&gt; Left Header &lt;/div&gt; &lt;div id="leftwrapper"&gt; ---CONTENT HERE--- &lt;/div&gt; &lt;div id="rightheader"&gt; Right Header &lt;/div&gt; &lt;div id="rightwrapper"&gt; ---CONTENT HERE--- &lt;/div&gt; &lt;/div&gt; &lt;div id="footer"&gt; Footer Content &lt;/div&gt; </code></pre> <p><code>CSS:</code></p> <pre><code>&lt;style type="text/css"&gt; div#header {position: fixed;left: 0px;top: 0px;height:100px;width:100%;background: black;color: White; } div#leftheader {position: fixed;left: 0px;top: 100px; height: 50px;width: 30%;float: left; background: red; color: White; } div#leftwrapper {position: fixed;left: 0px;color: Maroon;margin-top: 150px;margin-left: 0;margin-bottom: 100px; width: 30%; min-width: 30%; height: 600px; max-height: 600px; overflow-y: auto; } div#rightheader {position: fixed;left: 0px;top: 100px; height: 50px;width: 70%;margin-left: 30%;float: right;background: green;color: White;} div#rightwrapper {position: fixed;left: 0px;color: Purple;margin-left: 30%;margin-top: 150px;margin-bottom: 100px;width: 70%; min-width: 70%;height: 500px;max-height: 500px;overflow-y: auto; } /*div#wrapper { height: 1000px; }*/ div#footer {position: fixed;left: 0px;bottom: 0px; height: 100px;width: 100%;background: black;color: White;} &lt;/style&gt; </code></pre> <p>NOTE: I have only tested in <strong>Firefox</strong>.</p> <p>Hope, it will helps you. Thanks And Keep Posting.</p> <p>Cheers. !!</p>
    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