I want to build a two-column layout with a fixed left column and liquid on the right, both with a height of 100%, like this example:

I tried so many variations, I canβt remember what I tried now, and just canβt make it look right. I also tried looking at sites like LayoutGala , but they have no example where both columns are 100% high.
I canβt remember what I already tried, but it was my last attempt. I know this because it was the last web page visited before I was arrested for choosing a computer monitor from the fourth floor of a residential building.
body { margin:0; padding:0; } .left-column { position:absolute; top:0; width:235px; height:100%; background:#090909; } .right-column { margin-left:235px; background:yellow; height:100%; width:100%; } <div class="page-wrapper"> <div class="left-column"></div> <div class="right-columnr"> sd </div> </div>
This is the result:
Myfiddle
I'm so used to my large 960-center website that when it came to the full-screen layout, he completely abandoned me. Any help was greatly appreciated.
source share