How can I create a multi-row unordered list with the bottom row containing the full width of list items?
Normally it renders in this way:
Item1 Item2 Item3 Item4 Item5 Item6 Item7
Item8 Item9
How can I achieve the following?
Item8 Item9
Item1 Item2 Item3 Item4 Item5 Item6 Item7
What I have tried in CSS is:
.footer { width: 500px; overflow: hidden; background-color:#ccc; }
.footer ul { list-style: none; position: relative; float: left; display: block; left: 50%; }
.footer ul li { position: relative; float: left; display: block; right: 50%; }