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:
&
To get rid of the last line, you could use the :last-child pseudo-class:
ul.menu li:last-child { border: none; }