I have an unordered list that wraps onto a second line, and needs to be centered horizontally within the containing UL. Each LI is a set width and height. I've seen many approaches that work for a single line, but nothing I've tried is working when the list wraps to a second line. Would be ideal if this worked in IE7+ -- Thanks for the help.

See here for an illustration:

illustration http://grab.by/8UIl

link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

Here is the best method I could find.

ul li { 
    /* make list elements fall inline as block elements */
    position: relative;
    display: inline-block;
    /* next two lines only for display purposes */
    text-align: center;
    border:1px solid red;
}
/* horizontally center ul element */
ul { text-align:center; }

See the link for an example: http://jsfiddle.net/gfkPG/

link|improve this answer
OMG LOL -- Such a simple solution -- so used to having to employ complicated work-arounds, I forgot to look at the obvious. Thanks much! – John Feb 12 '11 at 3:35
Sorry, jumped the gun there, that doesn't work in IE7 for some reason. – John Feb 12 '11 at 3:41
1  
There's always got to be a hack for IE :) Here's what I found: zoom:1;*display:inline; in a conditional CSS did the trick. Thanks again. – John Feb 12 '11 at 3:50
feedback

Your Answer

 
or
required, but never shown

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