Evenly spaced list items

前端 未结 3 1153
我寻月下人不归
我寻月下人不归 2021-02-05 21:32

I\'ve been tasked with generating a horizontal nav list that looks like this:

\"enter

3条回答
  •  遥遥无期
    2021-02-05 22:11

    You won't be able to get this working well in IE6, but you can use this for all major browsers:

    ul {
    display: table; 
    table-layout: fixed; /* the magic dust that ensure equal width */  
    }
    li { display: table-cell; text-align: center; }
    

    For IE6 (possibly 7) you will need to use Javascript to calculate the widths dynamically.

    Also don't forget to text-align: left your first list item, and text-align: right the last.

提交回复
热议问题