how to add border between links in navigation bar code example
Example 1: how to add border between links in navigation bar
li:not(:last-child) {
border-right:solid 1px #fff;/* This will not give border to last li element */
}
Example 2: how to add border between links in navigation bar
border-right:solid 1px #fff;