Make Nav Links From An Unordered List With Separators in CSS
Given this HTML
Code
You can use this CSS to create nav links that are all on one line with a `|`` separator between them
Code
I like this approach because the `:nth-last-child(n+2)`` puts the separator between the links without having to do anything in the HTML. And, it does so without adding one after the last link.