gpt4 book ai didi

css - 我可以使用 :first-letter and the :hover selector together? 吗

转载 作者:行者123 更新时间:2023-11-28 18:06:22 25 4
gpt4 key购买 nike

我有第一个字母选择器,可以更改第一个字母的颜色,但是当悬停该区域时,颜色与背景匹配,因此它变得不可见。这是代码工作的一部分

.nav-menu li a:first-letter {color:#b5b503;}

.nav-menu li a:first-letter {font-weight:bold;}


.nav-menu li a {


color: #fff;
display: block;
font-size: 15px;
line-height: 1;
padding: 15px 20px;
text-decoration: none;
}

这是我想我应该添加一个 .first-letter 选择器的部分,但无法找到它是如何添加的,因为它已经是一个悬停选择器

.nav-menu li:hover > a,
.nav-menu li a:hover {

background-color: #b5b503;
color: #273664;
}

最佳答案

是的,你可以

示例 CSS:

p:first-letter {
font-size: 120%;
}
p:hover:first-letter {
color: white;
}

HTML:

<p>Hello world</p>

此处演示:http://jsfiddle.net/LRFw8/1/

对于您的代码,您可以在 .nav-menu li a:hover:first-letter 中设置样式

关于css - 我可以使用 :first-letter and the :hover selector together? 吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19515536/

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