After I login www.linkedIn.com, the navigation bar on top right displays the title as follows:
Welcome, XXX * Skip to Content * Search * Add Connections * Settings * Help * Sign Out
I would like to know how they add * between different titles. I have used firebug but I didn't see where they add such a small * between titles.
Thank you
How do you put dots between words in CSS? If you wish to have just the dots below the element, then use: border-bottom: thick dotted; You can also use think dotted or just dotted if you want different sizes.
in CSS means it is a class and it can be applied to many elements. # in CSS means it is an ID and it can be applied to one element per page. Without the either, it is a tag, targets all the elements with the tag name.
Instead of
span:after {
content: '*';
}
span.last:after {
content: '';
}
do
span:after {
content: '*';
}
span:last-child:after {
content: '';
}
This way you don't have to give the last one a special class.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With