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.

hello i would like to know if it is possible to center a div without having a width. because of two different versions of a container depending from language settings with different widths i would like to center it dynamically.

margin: 0 auto;

is not working without any settings of width.

so the structure is simple:

<div id="container">
        <div id="list">
            <span class="up">text large</span>
            <ul class="navigation">
                <li>one</li>
                <li>|</li>
                <li>two</li>
                <li>|</li>
                <li>three</li>
                <li>|</li>
                <li>four</li>
            </ul>
        </div>
</div>

and the css:

.wrapper #container  {
    width: 960px;
    clear: both;
    margin: 0 auto;
}

.wrapper #container #list {
    width: 420px;-->should be dynamically
    margin: 0 auto; --> only works when setting width
}
.wrapper #container #list .up {
    font-size: 11px;
    float: left;
    display: inline-block;
    text-align: right; 
    display: inline;
}
.wrapper .navigation {
    font-size: 10px;
    margin-top: 15px;
    float: left;
    padding-left: 5px;
}
.wrapper .nav li {
    float: left;
    display: inline-block;
    margin-left: 15px;
    list-style: none;
}

so if there is someone who knows how to deal with that i really would appreciate.

thanks alot.

UPDATE:

thanks for answering this question for so far. using:

display: inline-block;

on that container that should be centered works great.

share|improve this question
Give each version a different width? – Jleagle Dec 15 '12 at 21:32
thats how it works at the moment. but i would like to know if there is an other way to do so... without testing, checking, correcting... – bonny Dec 15 '12 at 21:34
Using a pipe (|) instead of a border-left or border-right on actual content containing lis? – cimmanon Dec 15 '12 at 22:18
i think it is faster than creating an own css rule and adding into the ul. thats because you would have 4 borders but only 3 are used to be ;) – bonny Dec 15 '12 at 22:21

1 Answer

up vote 9 down vote accepted

Use display: inline-block. See fiddle

.wrapper #container  {
    /* ... */
    text-align: center;
}
.wrapper #container #list {
    display: inline-block;
}
share|improve this answer
hello and thanks for answering this question. for the first version it works fine. the second will be a problem. i updated my question. thanks. – bonny Dec 15 '12 at 22:13
If you have 3 uls then all of them should be inline-block. In any case, it would be easier and more fun to help you if you create a fiddle that shows the problem. – ori Dec 15 '12 at 22:36
hello, i saw that i have missed a dot to declare a class. thats why it has been displayed wrong. thanks alot for your help. – bonny Dec 15 '12 at 23:22

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.