Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After 4 hours on this , I think Ii have to declare myself defeated. I can't try any more float, position etc. styles to try to get this layout as I want it.
I would be ever grateful if someone could save me the rest of the day and the headache, of creating this layout in HTML without tables:
alt text

Thank you in advance!!!

share|improve this question
Post your work-in-progress code here and we'll fix it from there. – Adrian Godong Jul 20 '09 at 16:27
What are the requirements on the boxes? What dimensions should be fixed? What dimensions should be automatic (contractible / expandable)? – Jan Zich Jul 20 '09 at 16:38
1  
You might find something useful here: giveupandusetables.com sorry, I couldn't resist... ;-) – Matt Jul 20 '09 at 16:46
was trying to get the code back to as i had it when it was semi funcional, but its really a mess. will have a look at the code posted below. thanks though!! – batman Jul 20 '09 at 16:50

3 Answers

Try something like this:

<style type="text/css">
.left {
    height: 100%;
    width: 20%;
    float: left;
    border: 1px solid black;
}
.right {
    height: 100%;
    width: 70%;
    float: left;
    border: 1px solid black;
    border-left: 0px solid black;
}
.wrap {
    width: 750px;
    height: 100px;
    border: 0px solid black;
}
.top {
    height: 25%;
    border-bottom: 1px solid black;
}
.bottom {
    border-top: 1px solid black;
}
.middle {
    height: 50%;
}
</style>
<div class="wrap">
    <div class="left">Left content</div>
    <div class="right">
    	<div class="top">Top</div>
    	<div class="middle">Middle</div>
    	<div class="bottom">Bottom</div>
    </div>
</div>

The borders are messy and so are the widths but obviously it can be customized. :P

share|improve this answer
may i suggest changing all selector to classes so that he could use them for all three div blocks? – ak3nat0n Jul 20 '09 at 16:38
Good point. Edited :) – Salty Jul 20 '09 at 16:43
fixed formatting. – Chetan Sastry Jul 20 '09 at 16:45
thanks, that looks a lot! like what i want. my problem really accured when i wanted to have a different color on the border of each of the 3 div blocks. i need another div between "rap" and "left" for that dont i? before i can copy the above code 3 times to get 3 blocks. – batman Jul 20 '09 at 16:52
Thanks Chetan. I always do that. :( I don't understand, batman. Could you possibly make an image of it? – Salty Jul 20 '09 at 17:05
show 2 more comments

As an alternative to Salty's floats, you might try the "no float" method.

For example (note, I have not tested this code cross-browser, but it's modified output from a no-float layout builder I built for internal use, which has gone through a lot of browser testing in the past; also note the caveat that IE 6-7 will not get the benefits of table-like layout, and columns will not be full height without some use of CSS Expressions... if you can predetermine the height, that's easy to overcome obviously),

CSS:

/* No-float */

/* Equivalent to <table> */
.lr {
    display: table;
    position: relative;
    table-layout: fixed;
    padding: 0;
    margin: 0;
    width: 100%;
    border-collapse: separate;
}

/* Equivalent to <tr> */
.lcc {
    display: table-row;
    padding: 0;
    margin: 0;
}

/* Equivalent to <td> */
.lc {
    display: table-cell;
    padding: 0 1px 0 0;
    vertical-align: top;
}

/* <div> within cell to make styles across browsers more uniform */
.lccc {
    position: relative;
    top: 0;
    left: 1px;
    width: 100%;
    height: 100%;
    padding: 1px 0 0 1px;
    margin: 0 -1px;
}
/* Adjust positioning in .lccc */
.content {
    margin: -1px 0 0 -1px;
    *margin: 0;
}

/* IE 6-7 compat */
.lr, .lcc {
    *display: block;
    *word-wrap: break-word;
    *overflow-x: hidden;
}
.lc {
    *display: inline;
    *zoom: 1;
    *width: 100%;
    *height: 100%;
    *line-height: inherit;
    *word-wrap: break-word !important;
    *overflow-x: hidden;
    *margin-right: -1px;
}
.lccc {
    *margin: -1px 0 0 -2px;
    z-index: 2;
}



/* Custom stuff */

.label {
    width: 200px;
    text-align: right;
}
.field {
    width: 550px;
}
.field .content {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

form .lr {
    width: 750px;
    border-collapse: collapse;
    margin-bottom: 20px;
}

form .lc {
    border: 1px solid #000;
}

/* Top and left padding are +1 */
form .lccc {
    padding: 16px 0 15px 1px;
}
form .content {
    padding: 10px;
}

HTML:

<form>
    <div class="lb lr">
        <div class="lcc">
            <div class="lb lc label">
                <div class="lccc">
                    <div class="content">
                        <label for="field1">Field 1</label>
                    </div>
                </div>
            </div>
            <div class="lb lc field">
                <div class="lccc">
                    <div class="content">
                        <input id="field1" />
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="lb lr">
        <div class="lcc">
            <div class="lb lc label">
                <div class="lccc">
                    <div class="content">
                        <label for="field2">Field 2</label>
                    </div>
                </div>
            </div>
            <div class="lb lc field">
                <div class="lccc">
                    <div class="content">
                        <textarea id="field1" rows="10" cols="50"></textarea>
                    </div>
                </div>
            </div>
        </div>
    </div>
</form>
share|improve this answer
thanks, playing a bit with this as well!! – batman Jul 20 '09 at 17:41
Note that some of the CSS I put under the No Float section is not directly from the No Float site's method... it's stuff I've added based on lessons learned from conflicts between IE/standards-browsers and conflicts around padding, margins, and so on in the content. It's a little hackish and does require some attention when editing, but it's nice to be entirely free from float-based layout and it's surprisingly consistent. – eyelidlessness Jul 20 '09 at 17:53
yes, thank you! i think it is the whole float thing is confused me and got me stuck in the first place. – batman Jul 20 '09 at 18:09

Here's an article on using div tags and CSS for table layouts:

http://www.pixel2life.com/publish/tutorials/33/converting_tables_to_a_css_div_tag_and_xhtml_validated_layout/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.