Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sorry guys for the really simple question but I have tried to float one div left and one right with predefined widths along these lines

<div style="width: 100%;">
    <div style="float:left; width: 80%">
    </div>
    <div style="float:right;">
    </div>
</div>

Although this 'mostly' works it seems to mess up the other elements on the page below it.

So what is the correct why to split a HTML page vertically into two parts using CSS without effecting other elements on the page?

share|improve this question

4 Answers

up vote 3 down vote accepted

you can use..

<div style="width: 100%;">
   <div style="float:left; width: 80%">
   </div>
   <div style="float:right;">
   </div>
</div>
<div style="clear:both"></div>

now element below this will not be affected.

share|improve this answer
2  
While this would work, it's considered bad practice to add elements whose only function is to "clear content". – Tieson T. Jul 26 '12 at 5:00
What's the best practice in these cases then? (I've been wondering for a while how to avoid "clearfix" divs) – Attila Fulop Feb 5 at 16:32
what if I need a line between them? can't use left|right border since I don't know which one will be larger all the time... – gcb Mar 23 at 6:12

I guess your elements on the page messes up because you don't clear out your floats, check this out

My Fiddle

share|improve this answer

Just add overflow:auto; to parent div

<div style="width: 100%;overflow:auto;">
    <div style="float:left; width: 80%">
    </div>
    <div style="float:right;">
    </div>
</div>

Working Demo

share|improve this answer
you just put height: 400px; on both sides. – gcb Mar 23 at 6:11

There can also be a solution by having both float to left.

Try this out:

Working Demo

P.S. This is just an improvement of Ankit Gautam's Answer

share|improve this answer

Your Answer

 
discard

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

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