gpt4 book ai didi

css链接访问背景

转载 作者:太空宇宙 更新时间:2023-11-04 11:06:22 24 4
gpt4 key购买 nike

由于某种原因访问背景没有变化为灰色。有人知道如何修复吗?

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>

最佳答案

尝试为您的链接设置默认背景颜色,例如 white

a{
background-color: white;
}

然后

a:visited {
background-color: gray;
}

关于css链接访问背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33944279/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com