vote up 1 vote down star
2

I've got a css menu like this:

<ul>
  <li><a>Item1</a></li>
  <li><a>Item Two</a></li>
  <li><a>Item C</a></li>
  <li><a>A Rather Long Menu Item Down Here</a></li>
</ul>

I want to create this:

|-----------------------------------|
| Item1                             |
|-----------------------------------|
| Item Two                          |
|-----------------------------------|
| Item C                            |
|-----------------------------------|
| A Rather Long Menu Item Down Here |
|-----------------------------------|

but I'm getting this:

 -------- 
| Item1 |
|----------- 
| Item Two |
|-----------
| Item C |
|----------------------------------- 
| A Rather Long Menu Item Down Here |
 ----------------------------------- 

If I set either the [li] or [a] tags to display:block, they stretch to fill the maximum possible width. I want them all to have the same width, which is dynamically determined by the widest item, rather than by manually putting a width on the [ul] tag.

Oh, and the target is IE6. :)

flag

64% accept rate

6 Answers

vote up 1 vote down check

Your only option is javascript.

BTW, one of my sites is visited by a large amount of home users. We've seen that IE6 is down to 12% of our traffic. Two months ago it was 20%. This is while overall IE traffic is staying at 76%

My point is that you probably shouldn't worry about IE6 quirks too much anymore.

link|flag
I would advise against the use of JS to solve this, although it is of course an option. Far simpler CSS only solutions exist. And I'm afraid the time when one can stop worrying about IE6 quirks is not quite here yet; 12% of visitors is far too high to ignore! – Ola Tuvesson Nov 19 '08 at 2:10
@ola: The ROI for the time to figure out how to correct a truly minor display quirk for 12% (and falling) of your users is extremely low. It's much better to invest your time in adding functionality or fixing bigger issues. – Chris Lively Nov 20 '08 at 22:52
vote up 2 vote down

This is remarkably simple:

<style>
ul {
float: left;
}
    ul li a {
    display: block;
    white-space: nowrap;
    border: 1px solid blue;
    }
</style>

<ul>
  <li><a>Item1</a></li>
  <li><a>Item Two</a></li>
  <li><a>Item C</a></li>
  <li><a>A Rather Long Menu Item Down Here</a></li>
</ul>

The trick here is the combination of floating the <ul> and adding white-space: nowrap; to the blocked anchors. In fact you don't even need the "nowrap" unless your <ul> is battling for space. As for the suggestion of ignoring 12% of your visitors.. well...

link|flag
vote up 1 vote down

Certain amount of hacking to make it work in IE6, because width:auto never really worked properly.

I have seen some solutions to this problem using width:1px; overflow:visible;, which might work in this case, but best to do it in a conditional comment so as not to stuff up in "real" browsers, or use the holly hack or similar. Be aware that IE 6 will probably handle this differently in quirks mode to standards mode, so know your doctype.

BTW, would put your anchor tags as block, so you get consistent width mouse targets.

link|flag
vote up 1 vote down

To get shrinkwrapped li inside the ul with pure CSS but uneven widths try:

ul,li {float:left;}
ul {overflow:hidden;}
li {clear:left;}

(then maybe adapt faux columns with fixed line-height and a repeating background image to style the li elements)

If you're sure it's IE-only then JavaScript can be built-in to CSS with a dynamic property to set the child width to match the parent thus:

ul,li {float:left;}
ul {overflow:hidden;}
li {clear:left;width:expression(this.parentNode.offsetWidth);}
link|flag
vote up 0 vote down

width:1px, overflow:visible didn't work. (Got the same sqashed effect as without the display:blocked anchors.)

This is for an intranet where IE6 is the target, so I'm stuck there. (In other projects, I've stopped worrying about it.) JS is a requirement, so maybe I'll use that. (I always hate doing that, though.)

link|flag
So, how did it go in the end? – Ola Tuvesson Nov 21 '08 at 16:41
vote up 0 vote down

No, the <li>'s are fine, but the <a href>'s are not 100% width. I'm tearing my hair over this too. :-((

Help, anyone?

link|flag

Your Answer

Get an OpenID
or

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