希望實現(xiàn)這樣的效果,當(dāng)一個鏈接被訪問過后,鏈接區(qū)域出現(xiàn)一個特定背景圖,以向用戶突顯其被訪問過的特征。但是始終無法正確顯示。補充:如果將背景圖挪到hover中可以看到背景圖,但是放在visited中始終無效<!DOCTYPE?html>
<html>
<head>
????<meta?charset="UTF-8">
????<meta???http-equiv="expires"???content="0">
????<meta???http-equiv="cache-control"???content="no-cache">
????<meta???http-equiv="pragma"???content="no-cache">
????<title>document</title>
????<style?type="text/css">
????????a{
????????????display:?inline-block;
????????}
????????a:link{
????????????background-color:?#0f0;
????????}
????????a:hover{
????????????text-decoration:?none;
????????????border:1px?solid?#ccc;
????????????/*放置在hover中能看到*/
??????????/*background:?url("images/ok1.png")?no-repeat?0?0?;*/
????????}
????????a:visited{
????????????text-decoration:?none;???????
????????????background:?url("images/ok1.png")?no-repeat?0?0?;
???????????/*?background-color:?#00f;??*/?/*背景色能看到*/???
????????}
????????.circle{
????????????width:?50px;
????????????height:?50px;
????????????border-radius:?50%;
????????????line-height:?50px;
????????????text-align:?center;
????????}
????????
????</style>
</head>
<body>
????<div>This?is?a?<a??href="#"??class="circle">link</a></div>
</body>
</html>
visited偽類如何添加背景圖
MichaelJackson
2018-11-16 12:59:01