I have the following html markup:
<a href="">First Link</a> / <a href="">Second Link</a> / <a href="">Third Link</a>
I want it to display as:
First Link / Second Link / Third Link
But what I get is:
First Link
/
Second Link
/
Third Link
And links can be clickable in any place of the their row. How can I fix it? I tried "display: block;", but it didn't help.