vote up 1 vote down star

Hi, How can I define a define float as center in css? actually i need a layout between right and left and also i tried "text-align" but it doesn't work and the "float" property just working.

Thank you

flag

50% accept rate
Both yopefonic and dcaunt's techniques are perfectly valid (despite dcaunt's comment). They both have their specific use cases and drawbacks. – Gabriel Hurley Oct 26 at 1:01
Perhaps, but I think yopefonic's technique is obfuscated - developers should know how text-align works with the 0 auto margin to achieve centering - it's so often required. It's also easier to maintain if widths change. – David Caunt Oct 26 at 1:04

4 Answers

vote up 0 vote down

You can only float an element to the left or the right.

Maybe describe what kind of layout you are trying to achieve.

link|flag
vote up 1 vote down

There is no float: center. but when you want a div to be centered to its parent this should do the trick:

#parent-element{
    position: relative;
}
#element
{
  width: 500px; 
  left: 50%;
  margin-left: -250px; /* - (width/2)  */
  position: absolute;
}

but, what exactly are you trying to achieve?

link|flag
CSS like this is never a good idea – David Caunt Oct 26 at 0:48
@dcaunt, I'd downvote your comment if I could. While this technique can lead to problems on small screens, sometimes it's exactly what's needed to solve a problem, especially with complex layered layouts. Yours is the more common solution, but yopefonic's isn't wrong. – Gabriel Hurley Oct 26 at 1:03
What's the best use case for this over the text-align approach? My comment might have been overly harsh! – David Caunt Oct 26 at 1:07
@dcaunt, no problem. I agree that it is not THE solution but as indicated the text-align was causing some problems. – yopefonic Oct 29 at 13:24
vote up 7 vote down

You want something like this:

<div style="width: 500px; text-align: center;">

    <div style="margin: 0 auto; width: 100px;">I am centered</div>

</div>

The key is text-align: center on the parent, and a margin: 0 auto on the inner element

link|flag
the best way ^o^ – Stephanie Luther Oct 26 at 1:02
the most applicable and most common way. – Gabriel Hurley Oct 26 at 1:04
vote up 0 vote down

Thank you all,

I try your suggestion but it doesn't work for me. you can see the example here. on the top of page after click on dropdown menu ,you see a dropdown panel. in this panel; there is a menu that I styled it with margin-right to seems center , the css is as below:

/* top menu */
div#dropdownpanel div.contentdiv table.contentpaneopen{
    margin-right: 11%;
    width: 70%;
}
div#dropdownpanel div.contentdiv, .contentdiv{
    text-align: center;
}

but it's not fair . so could you suggest a better way to always show contentpaneopen in center ?

Thank you :)

link|flag

Your Answer

Get an OpenID
or

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