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'm trying to spread a list of <li>'s aligned horizontally using float:left across my <ul>.

Does anyone have any idea how this is done?

share|improve this question
float: left; sounds good. What HTML/CSS do you have so far? – Tomalak Aug 20 '11 at 11:01
@Tomalak I was actually trying to divide them evenly, e.g. they will all have the same width regardless of their content, together adding up to the <ul>'s width. – CookieMonster Jan 30 '12 at 19:17
best answer: stackoverflow.com/a/11466521/104380 – vsync Oct 16 '12 at 20:44

3 Answers

Is there some reason why you can't just set them to display: inline; (or inline-block)? For example:

http://jsfiddle.net/TKmR5/

share|improve this answer
Display inline creates an awkward space between items, it also disallows to set width or height. – Madara Uchiha Aug 20 '11 at 11:08
Then use inline-block instead! "awkward space between items" is caused by not re-setting margins and paddings… – feeela Aug 20 '11 at 11:29
I was able to figure out something similar myself, but this is not what I were looking after. I want differently sized items, but spread over a set width. – CookieMonster Aug 20 '11 at 12:19

Float left and divide the width of the ul over de number of lis I think is what you are after. Have a look here: http://jsfiddle.net/b2nsW/

HTML:

<ul>
    <li>item</li>
     <li>item</li> 
     <li>item</li> 
     <li>item</li> 
</ul>

CSS:

ul {
    width: 250px;
    background: red;
    padding: 0;
    margin: 0;
    overflow: auto;
}

li {
    width: 20%;
    float: left;
    background: green;
    margin: 2.5%;
}
share|improve this answer
Working, but only useful, if you have a fixed number of menu-items. But a customer may add more menu-items via a CMS. – feeela Aug 20 '11 at 11:31
1  
then your frontend uses something like asp or php, you can count the number of items and set an inline style on the items. Here is a php example style="width:<?= round(100 / count($itemCollection), 2)?>%;". – Bazzz Aug 20 '11 at 12:37

You can use display: inline-block; it works in modern browsers.

Example: http://jsfiddle.net/joar/ELpDD/

As feela said in the comments to #7131346,

[…] "awkward space between items" is caused by not re-setting margins and paddings…

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.