リンク:hover
の疑似セレクターの動作を削除しようとしています。:after
しかし、それは不可能だと思います。
a {
font-family: Georgia, "Times New Roman", Times, serif;
font-style: italic;
font-size: 12px;
color: #666;
text-decoration: none
}
a:after {
content: "·";
margin: 0 2px 0 6px
}
a:hover {
text-decoration: underline
}
a:hover:after {
text-decoration: none
}
<a href="#">test</a>
<a href="#">test</a>
<a href="#">test</a>
JsFiddleをチェックアウトします。
出来ますか?