Skip to content

Instantly share code, notes, and snippets.

@princed
Forked from tyv/dabblet.css
Created July 18, 2012 16:26
Show Gist options
  • Save princed/3137297 to your computer and use it in GitHub Desktop.
Save princed/3137297 to your computer and use it in GitHub Desktop.
сделать псевдоссылку с точечным подчеркивание
/*
сделать псевдоссылку с точечным подчеркивание
которое было бы на одном уровне с
подчеркиванием ссылки
http://clck.ru/d/fLXRAghf14C1t
*/
a.pseudo
{
text-decoration: none;
display: inline-block;
position: relative;
top: 0.15em;
height: 1em;
}
a.pseudo:after
{
content: "";
display: inline-block;
position: relative;
width: 100%;
top: -1em;
border-bottom: 1px dotted;
}
a.pseudo:hover
{
color: red;
}
<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