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.

I have two divs like this

<div style="border:1px solid #000; float:left">Div 1</div>
<div style="border:1px solid red; float:left">Div 2</div>

I want them to display on the same row, so I used float:left.

I want both of them to be at center of the page as well, so I tried to wrap with another div like this

<div style="width:100%; margin:0px auto;">
<div style="border:1px solid #000; float:left">Div 1</div>
<div style="border:1px solid red; float:left">Div 2</div>
</div>

But it doesn't work. If i change the code to this

<div style="width:100%; margin-left:50%; margin-right:50%">
<div style="border:1px solid #000; float:left">Div 1</div>
<div style="border:1px solid red; float:left">Div 2</div>
</div>

then it's going to the center, but the horizontal scrollbar is there and seems like it's not really centered as well.

Can you please kindly suggest to me how can i achieve this? Thanks.

Edit: I want the inner div (Div 1 and Div 2) to be center align as well.

share|improve this question
Do you want div1 and div2 to be the same width? – Eric Aug 2 '11 at 17:57
no, it won't be same width, div 1 will be much smaller – knightrider Aug 3 '11 at 3:14

5 Answers

You could do this

<div style="text-align:center;">
    <div style="border:1px solid #000; display:inline-block;">Div 1</div>
    <div style="border:1px solid red; display:inline-block;">Div 2</div>
</div>  

http://jsfiddle.net/jasongennaro/MZrym/

  1. wrap it in a div with text-align:center;
  2. give the innder divs a display:inline-block; instead of a float

Best also to put that css in a stylesheet.

share|improve this answer
3  
To whoever voted down this answer... I don't mind being voted down, but could you share with us why? It helps me and helps others know why something doesn't work or is inappropriate/ – Jason Gennaro Aug 2 '11 at 17:49

Could this do for you? Check my JSFiddle

And the code:

HTML

<div class="container">
    <div class="div1">Div 1</div>
    <div class="div2">Div 2</div>
</div>

CSS

div.container {
    background-color: #FF0000;
    margin: auto;   
    width: 304px;
}

div.div1 {
    border: 1px solid #000;
    float: left;
    width: 150px;
}

div.div2 {
    border: 1px solid red;
    float: left;
    width: 150px;
}
share|improve this answer
if i want to center div 1 and div 2, how can i do it ? – knightrider Aug 3 '11 at 3:13
@knightrider They are centered.. What do you mean? If you want to center the content of div1 and div2 just add text-align: center; in the CSS of these two div's. – Jules Aug 3 '11 at 9:28

Your wrapper div is set to a width of 100%, thus taking 100% of it's container. Give the wrapper div an appropriate fixed width and remove the horizontal margins.

share|improve this answer

both floated divs need to have a width!

set 50% of width to both and it works.

BTW, the outer div, with its margin: 0 auto will only center itself not the ones inside.

share|improve this answer
if i want to center inner div as well, how can i do it ? – knightrider Aug 3 '11 at 3:13
@knightrider to center the inner divs, you just need to add widths to the inner divs, and make sure the outer div has a width wide enough! (the border takes space!), please check this example I made: jsfiddle.net/jackJoe/6kEsT – jackJoe Aug 3 '11 at 14:49

I would vote against display: inline-block since its not supported across browsers, IE < 8 specifically.

.wrapper {
    width:500px; /* Adjust to a total width of both .left and .right */
    margin: 0 auto;
}
.left {
    float: left;
    width: 49%; /* Not 50% because of 1px border. */
    border: 1px solid #000;
}
.right {
    float: right;
    width: 49%; /* Not 50% because of 1px border. */
    border: 1px solid #F00;
}

<div class="wrapper">
    <div class="left">Div 1</div>
    <div class="right">Div 2</div>
</div>

EDIT: If no spacing between the cells is desired just change both .left and .right to use float: left;

share|improve this answer
instead of having fixed width for wrapper, is there any other ways ? – knightrider Aug 3 '11 at 3:08

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.