I want to create a menu that looks like:
HOME | FOO | BAR | ABOUT | CONTACT
How might I go about doing this?
Here is what I have tried:
&
You might want to try to make the elements have an inline-block
display
.
ul.menu li {
display: inline-block;
*display: inline; zoom: 1; /* inline-block under IE */
vertical-align: middle;
}
This way, they will behave much more like block elements and might sync with the links. Also, you can try playing with the line-height
property instead of adding vertical padding, since the line-height will center the text vertically in a more precise manner.