Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I tested this in IE7/8 and recent versions of Chrome, Firefox, Opera, Safari.</p> <p>This will not work in IE6 (as @meagar said) because of <code>min-width</code> and <code>max-width</code> - there are plenty of resources online detailing hacks to get around this. I'm not going to expend effort on doing this myself unless the rest of my code is correct for you. Also, I have no interest in using a CSS grid system.</p> <p><a href="http://jsbin.com/ozilo4" rel="nofollow"><strong><em>Live Demo</em></strong></a> (with taller <em>right</em> column)<br> <a href="http://jsbin.com/ozilo4/2" rel="nofollow"><strong><em>Live Demo</em></strong></a> (with taller <em>fluid</em> column)</p> <p><strong>HTML:</strong></p> <pre><code>&lt;div id="container"&gt; &lt;div id="header"&gt;header&lt;/div&gt; &lt;div id="fluidColumnContainer"&gt; &lt;div class="column"&gt;column 1&lt;/div&gt; &lt;div class="column"&gt;column 2&lt;/div&gt; &lt;div class="column"&gt;column 3&lt;/div&gt; &lt;/div&gt; &lt;div id="fixedColumn"&gt;i'm 200px wide!&lt;br /&gt;o&lt;br /&gt;o&lt;br /&gt;o&lt;br /&gt;o&lt;/div&gt; &lt;div id="footer"&gt;footer&lt;/div&gt; &lt;/div&gt; </code></pre> <p><strong>CSS:</strong></p> <pre><code>html, body { margin: 0; padding: 0; border: 0 } #container { margin: 0 auto; min-width: 960px; max-width: 1216px; overflow: auto } #fluidColumnContainer { padding: 0 200px 0 0 } #fixedColumn { width: 200px; float: right } .column { float: left; width: 33% } #header { height: 90px } #footer { height: 90px; clear: both } </code></pre>
    singulars
    1. This table or related slice is empty.
    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.
    3. 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