I want to have 3 divs aligned inside a container div, something like this:

[[LEFT]       [CENTER]        [RIGHT]]

Container div is 100% wide (no set width), and center div should remain in center after resizing the container.

So I set:

#container{width:100%;}
#left{float:left;width:100px;}
#right{float:right;width:100px;}
#center{margin:0 auto;width:100px;}

But it becomes:

[[LEFT]       [CENTER]              ]
                              [RIGHT]

Any tips?

link|improve this question

75% accept rate
If the container becomes narrower than 300px wide, that's going to happen unless you set the overflow property. – inkedmn Apr 8 '10 at 21:59
feedback

3 Answers

up vote 18 down vote accepted

With that CSS, put your divs like so (floats first):

<div id="container">
  <div id="left"></div>
  <div id="right"></div>
  <div id="center"></div>
</div>
link|improve this answer
It works, thanks :) – serg Apr 8 '10 at 21:54
how would you do it if the container wasn't 100%? Im trying something like that here, I would like the div do stay in the right of the container, but it floats to the right of the page – Tiago Nov 9 '10 at 22:50
@Tiago: The floats should remain constrained to the div if they're inside of it. Check what the width of container is by setting it to border:solid. If it's 100% then enclose it into another div to position it inside your page. – James Poulson Jul 15 '11 at 11:59
feedback

Float property is actually not used to align the text

This property is used to Add element to either right or left or Center

THat Means if you set float to left then All Divisions will be added to left

<code>
     <div>
     <div style="Float:left">First</div>
     <div style="Float:left">Second</div>
     <div style="Float:left">Third</div>
     </div>
</code>

then output will be

[First][second][Third]

Vise a versa if you set property Float right for all then it will insert All your div to right

[Third][Second][First]

That means float => left property will add your next element to left of previous one, Same case with right

Also you have to Consider the width of parent element

if sum of width of child element exceed than width of parent element then next element will be added at next line

<code>
     <div style="width:100%">
     <div style="Float:left;width:"50%">First</div>
     <div style="Float:left;width:"50%"">Second</div>
     <div style="Float:left;width:"50%"">Third</div>
     </div>
</code

>

[First] [Second]

[Third]

So you need to Consider All these aspect to get the perfect result

link|improve this answer
feedback
#warpcontainer  {width:800px; height:auto; border: 1px solid #000; float:left; }
#warpcontainer2 {width:260px; height:auto; border: 1px solid #000; float:left; clear:both; margin-top:10px }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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