Created
May 22, 2012 10:45
-
-
Save tyv/2768267 to your computer and use it in GitHub Desktop.
любые стили для :visited
This file contains hidden or 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
/* | |
любые стили для :visited | |
отключены в webkit по | |
соображениям безопастности | |
*/ | |
:visited | |
{ | |
/* разрешается менять только color */ | |
color: red; | |
} | |
:link | |
{ | |
color: green; | |
} | |
:link:hover | |
/* :visited:hover */ | |
{ | |
/* | |
если определить :hover без уточнения, | |
он сработает вообще на всех элементах, | |
=== | |
:link матчится на все | |
непосещенные ссылки и только | |
:visited только на посещенные —> | |
перестает обрабатывать правила :hover | |
*/ | |
color: black; | |
} | |
:link:active, | |
:link:focus | |
/* | |
:visited:active, | |
:visited:focus | |
*/ | |
{ | |
background: red; | |
color: #fff; | |
} |
This file contains hidden or 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
<a href="#">Вася</a><br> | |
<a href="http://petya.com">Петя</a><br> | |
<a href="/123">Коля</a><br> | |
This file contains hidden or 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