由於某種原因,訪問過的背景沒有變成灰色。 任何人都知道如何解決?css鏈接訪問過的背景
a:link {
height: auto;
display: inline-block;
border-radius: 5px;
background: rgb(241,231,103);
background: linear-gradient(to bottom, rgb(241,231,103) 0%, rgb(241,231,103) 32%, rgb(248,217,54) 73%, rgb(253,208,22) 100%);
}
a:visited {
background-color: gray;
}
a:hover {
background: linear-gradient(to bottom, rgb(253,208,22) 0%, rgb(248,217,54) 27%, rgb(241,231,103) 68%, rgb(241,231,103) 100%);
}
HTML文件,我需要在我的任務使用CSS
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="http://www.stackoverflow.com">one</a>
<a href="#">two</a>
<a href="#">three</a>
<a href="#">seven</a>
</body>
你能提供一些HTML呢? – CoderPi
嘗試設置你的鏈接的默認'背景color',檢查答案 –
<!DOCTYPE HTML>