vote up 1 vote down star

I am having problems aligning a couple divs in IE6, IE7, IE8 and Firfox 3. They all don't render correct what IE8 and Firefox like the rest don't.

Is it possible to do this via floats and clears.. they dont need to have any spacing between them, I just drew it this way.... Also, the div's should be fixed widths.

alt text

flag

Some code would help to see what could be the problem exactly. – jeroen Jun 18 at 23:18
This would be easy to do, what order do you want the divs to appear in the HTML source? can you number them? – Matthew James Taylor Jun 19 at 0:46

2 Answers

vote up 4 vote down

Yeah, this is possible:

<table>
    <tr>
        <td></td>
        <td rowspan='2'></td>
    </tr>
    <tr>
        <td></td>
    </tr>
    <tr>
        <td colspan='2'></td>
    </tr>
</table>

I'm only kidding, of course.

link|flag
1  
OMG tables!!!! :P – alex Jun 18 at 23:01
1  
+1 You gave me a fright! – Jonathan Jun 18 at 23:03
1  
You forgot the divs in the table cells to comply with the original question... – jeroen Jun 18 at 23:20
3  
+1 Because that actually works; and it works EVERYWHERE. You guys with the "tablephobia" need to get over it. – Chris Lively Jun 19 at 0:32
1  
@Chris Lively: Hear, hear. – Tomalak Jun 19 at 10:10
show 2 more comments
vote up 1 vote down

You won't get equal heights for the 2 left DIVs combined and the right DIV. Unless ofcourse you specify those, or if the contents produce the same heights... But this shouldn't be a problem i think?

Update

<style type="text/css">
    #container {float:right;position:relative;}
    #left    {float:left;}
    #left_1  {float:left;}
    #left_2  {clear:left;float:left;}
    #right   {float:right;}
    #bottom  {float:left;clear:both;}
</style>

<div id="container">
    <div id="left">
        <div id="left_1">left 1</div>
        <div id="left_2">left 2</div>
    </div>

    <div id="right">right</div>

    <div id="bottom">bottom</div>
</div>
link|flag
with fixed widths in firefox it is causing #right to position under left2 and in ie this is causing #right to to float all the way to the right of the page... – andrewkhar Jun 18 at 23:11
could it be with fixed widths that the container is too small to fit both left and right DIVs next to each other? – ropstah Jun 18 at 23:14
There is no need to float #right, you can just give it a left margin bigger than or equal to the width of the left divs – jeroen Jun 18 at 23:15
please see the updated answer, this should work..? – ropstah Jun 18 at 23:22
I haven't tried it, but it should even work without the container div, although like I said, I would give the right div a left margin and not float it. – jeroen Jun 18 at 23:31
show 1 more comment

Your Answer

Get an OpenID
or

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