vote up 1 vote down star
2

Hi all,

I guess this is a common question but haven't found any good answer about it, and questions around here are not exactly my case. Also, this is my first question so please don't be too harsh on me. lol

I have a standard CSS menu, made with UL and LI tags. I need them to get to cover the whole page, horizontally (not my real case, but I'll take this to simplify the situation). However, the items are created dynamically and so I'm not able to hardcode any with to LI items, nor margins.

I've seen solutions using JavaScript to set those values but I would really love to avoid them.

Lastly, I've seen a pretty good solution which is setting

#menu {
    width: 100%;
    /* etc */
}
#menu ul {
    display: table;
}
#menu ul li {
    display: table-cell;
}

This will create the desired behavior in most browsers... except for IE.

Any ideas? Thanks in advance!

EDIT: Thanks for the responses. However, as the code that generates the items isn't mine, I'm not able to set inline styles when creating them without using JavaScript later.

flag
You need them to "cover the whole page"? Do you mean horizontally 100% page width, divided equally? Would you be able to have standard buttons across each page, with dynamically-created sub-menus? Also: which version of IE is giving the problem? I assume it's the display: table /* or table-cell */ that's causing problems. Despite my inner-distaste, you may be as well off using real html tables, if you're rendering that way...I'm sorry =( – ricebowl Jul 30 at 1:12
Hi. It is not necessary to cover the whole page, but I made it that way to simplify the situation. And yes, they should be spaced equally. I did not understand very well the button question. Are you referring to the standard <button> element? I tried it with IE 6, IE 7 and haven't tried with IE 8 yet. Also, my first approach was using tables as I couldn't get desired results on other way... but this comes up from a template generator so I'm bound to lists. Thanks anyway. =) – Alpha Jul 30 at 13:40

4 Answers

vote up 0 vote down check

If your menu items are being dynamically generated (so you don't know how many there will be prior) then you can add a style="width:xx" attribute to the lis (or in <style> at the top... or where ever you please, really). Where xx should either by width_of_parent_div_in_px/number_of_elements+'px', or 100/number_of_elements+'%'. The lis should also be block-level elements, and floated left.

link|flag
Thanks, it seems like a clean solution, however, the code that generates items is not mine and I would not be able to set the style without using javascript. Sorry for not mentioning that before. – Alpha Jul 30 at 13:45
vote up 1 vote down

You can't set the height or width of an inline element. http://www.w3.org/TR/CSS2/visudet.html#inline-width

Try display:inline-block;

here is the fix for ie:

display:inline-block; zoom:1; *display:inline;

link|flag
thank you jesse, you made my day by pointing out this property to me – smchacko Oct 17 at 0:07
vote up 0 vote down
#menu ul {
display: block;
width: 100%;
}

#menu ul li {
display: inline;
width: /* if you're creating the buttons/items dynamically you should be able to use some form of math, essentially number-of-items/100 = percent */
}

The width of the #menu ul li can be set either in the head of the page (<style type="text/css" media="all">...</style>) or inline on the elements themselves. But dynamic shouldn't be a problem.

link|flag
vote up 0 vote down
#menu ul li {
    float: left;
    clear: none;
    display: inline;
    padding: 10px;
    height: 25px; //how tall you want them to be
    width: 18%; //you will need to set the width so that all the li's can fit on the same line.
}

The width: 18% may be about right if you have 5 elements across, accounting for border and padding. But it will vary due to how many elements you have, how much padding, etc.

link|flag
You know, I'm not convinced that what he said is what he meant, regarding the 'fill the whole page' (height: 100%). I assume -and I could definitely be wrong- that he meant only horizontally. Filling the whole page with navigation just sounds wrong =/ – ricebowl Jul 30 at 1:17
you know, you're right. thanks, edited post. :D – CrazyJugglerDrummer Jul 30 at 1:19
the height: 100% is referring to the li tag and that the ul. Presumably he has the ul already set to a specific height, or has another wrapping element with a specific height. The height: 100% would just ensure that it is taking up all available space. – Ballsacian1 Jul 30 at 1:20
That's right, when referring to "filling the whole page" I meant horizontally, sorry for not making it clear before. Already edited the question. Thanks! – Alpha Jul 30 at 13:47

Your Answer

Get an OpenID
or

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