Answers for "how to add border between links in navigation bar"

0

how to add border between links in navigation bar

border-right:solid 1px #fff;
Posted by: Guest on March-27-2021
0

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 */
}
Posted by: Guest on March-27-2021

Code answers related to "how to add border between links in navigation bar"

Browse Popular Code Answers by Language