-
-
Save eelyafi/3007376 to your computer and use it in GitHub Desktop.
сделать псевдоссылку с точечным подчеркивание
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pseudo | |
{ | |
text-decoration: none; | |
position: relative; | |
} | |
.pseudo:after | |
{ | |
border-bottom: 1px dotted blue; | |
content: ''; | |
position: absolute; | |
top: 0; | |
bottom: 15%; | |
left: 0; | |
right: 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p><a href="/">обычная ссылка</a> просто текст <a class="pseudo" href="/">ссылка</a> еще текст</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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