Skip to content

Instantly share code, notes, and snippets.

@eelyafi
Forked from tyv/dabblet.css
Created June 27, 2012 22:44
Show Gist options
  • Save eelyafi/3007376 to your computer and use it in GitHub Desktop.
Save eelyafi/3007376 to your computer and use it in GitHub Desktop.
сделать псевдоссылку с точечным подчеркивание
.pseudo
{
text-decoration: none;
position: relative;
}
.pseudo:after
{
border-bottom: 1px dotted blue;
content: '';
position: absolute;
top: 0;
bottom: 15%;
left: 0;
right: 0;
}
<p><a href="/">обычная ссылка</a> просто текст <a class="pseudo" href="/">ссылка</a> еще текст</p>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment