I'm a beginner, so if u know other solution tell me ;) I want to make menu on my website look like this:
link / link / link / link / link
Menu is in so here's what I've made:
li:before {
content: "/";
}
li:first-of-type {
color: #FFF; /* I've made first "/" same color as background, so we don't see it */
}
There are some padding tags so it looks nice, but I want to make it simple to read for You.
In most browsers it looks fine, but of course older Internet Explorer doesn't support :first-of-type tag. How can I work it out, so the user don't see just the first slash?