Reputation: 105
Is there a way for me to add more space between the text of the link and the link that shows up below it. Is this possible in anyway?
Currently I have only found ways to remove the link or change the color of the link but can I space it out?
So for example, in the above link, is their a way to add a larger gap (space) between the text (- Nelson Mandela) and the line?
HTML code:
<a href = "#" id = "link"></a>
Upvotes: 1
Views: 641
Reputation: 10177
Use bottom border instead of default bottom line with padding.
a{
padding: 0 10px;
text-decoration: none;
border-bottom: 1px solid #ccc;
}
<a href = "#" id = "link">saas</a>
Upvotes: 3