Note that there are some explanatory texts on larger screens.

plurals
  1. POCSS layout with two columns don't work
    primarykey
    data
    text
    <p>I work on a clean CSS layout and i want a sidebar and a content. And if the content in the content box has more text as the sidebar, the sidebar should be growing up to 100%. But i can't find the solution for this problem.</p> <pre><code>&lt;body&gt; &lt;div id="page"&gt; &lt;div class="left"&gt; &lt;div class="logo"&gt;&lt;/div&gt; &lt;div class="sidebar"&gt;sidebar&lt;/div&gt; &lt;/div&gt; &lt;div class="right"&gt; &lt;div class="header"&gt; &lt;h1&gt; title &lt;/h1&gt; &lt;/div&gt; &lt;div class="content"&gt; content text &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <pre class="lang-css prettyprint-override"><code>html, body { margin: 0; padding: 0; height: 100%; background-color: #fff; font-size: 1.0em; font-style: normal; font-family:"Century Gothic", "Avantgarde", arial, sans-serif; line-height: 20px; color: #666; } div.rightBox { display: block; position: absolute; z-index: 1; width: 40px; height: 40px; top: 181px; left: 981px; background-color: #95C97A; border-bottom: #CAE3BB solid 25px; border-right: #CAE3BB solid 25px; } div#page { background-color: #fff; min-height: 100%; /* Mindesthöhe für moderne Browser */ height: auto !important; /* Important Regel für moderne Browser */ height: 100%; /* Mindesthöhe für den IE */ overflow: hidden !important; /* FF Scroll-leiste */ border: 1px solid #000; } div#page .left { margin: 0 0 0 0; background-color: #CAE3BB; min-height: 100%; height: auto !important; height: 100%; width: 200px; border: 1px solid #000; border-left: #fff 21px solid; display: block; position: absolute; float: left; } div#page .left .logo { margin: 21px 0 0 -21px; width: 200px; height: 200px; border-left: #B0D69A 21px solid; background-color: #93C677; } div#page .left .logo img { margin: 5px 0 0 10px; } div#page .left .sidebar { padding: 10px 10px 10px 10px; } div#page .right { background-color: #fff; min-height: 100%; height: 100%; margin: 0 0 0 221px; display: block; position: absolute; } div#page .right .header { margin: 21px 0 0 0; background-color: #B0D69A; width: 800px; height: 200px; } div#page .right .content { padding: 20px 0 20px 15px; width: 770px; border: 1px solid #000; } </code></pre> <p>Here is a fiddler: <a href="http://jsfiddle.net/c6TGQ/" rel="nofollow">http://jsfiddle.net/c6TGQ/</a></p> <p>Can anyone help me?</p>
    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.
 

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