enter image description here

This is what i want... But how can i build this using CSS and DIV's? I tried many tutorials, but it didn't came further than this:

   body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    background: #F0F0F0;
}

#wrapper {
    padding: 1px;
    margin: 0 auto;
}

#wrapper:after {
    content: ".";
    display: block;
    clear: both; 
    height: 0;
    overflow: hidden;
}

#left {
    float: left; 
    width: 200px;
    background: white;
    padding: 5px;

}

#content {
    margin-left: 215px;
    background: white;
    padding: 5px;
    padding-left: 10px;
}
link|improve this question

So the whole creation should be the size of the viewport? The user should never have to scroll down? – thirtydot Apr 22 '11 at 23:40
'Rest of height' is a fixed or variable value? – morgar Apr 22 '11 at 23:44
@morgar is not fixed – Thew Apr 22 '11 at 23:47
@thirtydot no, they can scroll down... – Thew Apr 22 '11 at 23:47
Ok, how the height is defined? By the container or by the content? – morgar Apr 22 '11 at 23:49
feedback

1 Answer

up vote 4 down vote accepted

Here's a little demo: http://jsfiddle.net/32trY/56/.

I went a bit overkill with the <div class="wrap">, so sorry about that.

HTML:

<div id="header">
    <div id="smallbox">Tiny Box</div>
    <div id="headerMain">Header Part</div>
</div>


<div id="content">
    <div id="contentLeft">
        <div class="wrap">
            Left Thing
        </div>
    </div>

    <div id="contentMain">
        <div class="wrap">
            The Content
        </div>
    </div>
</div>

CSS:

html, body {
    height: 100%;
    padding: 0px;
    margin: 0px;
}

#header {
    height: 100px;
    width: 100%;
    position: absolute;
}

#header #smallbox {
    float: left;
    background-color: rgb(255, 180, 180);

    width: 100px;
    height: 100%;
}

#header #headerMain {
    background-color: rgb(255, 200, 200);
    height: 100%;
}

#content {
    height: 100%;
}

#content #contentLeft {
    float: left;
    background-color: rgb(180, 180, 255);

    width: 100px;
    height: 100%;
}

#content #contentMain {
    background-color: rgb(200, 200, 255);
    height: 100%;
}

.wrap {
    padding-top: 100px;
}
link|improve this answer
Wow, thanks! That one works for me. – Thew Apr 22 '11 at 23:59
See my edit. That one looked correct, but didn't display the content correctly. – Blender Apr 23 '11 at 0:04
I'm sure this can be done in a more elegant manor, but that's all I can do. This is basically a one-column layout with a sidebar and header. The header just has a little floaty box in it, so try searching for that sort of layout. – Blender Apr 23 '11 at 0:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.