gpt4 book ai didi

html - 将悬停样式应用于 li :last-child link

转载 作者:太空宇宙 更新时间:2023-11-04 14:41:48 27 4
gpt4 key购买 nike

我在列表末尾设置了一个元素的样式,看起来不错,但我似乎无法对悬停状态进行任何更改:

div#navigation li a{color:#73737a;} 
div#navigation li a:hover{color:#3ca2e0;}
div#navigation li:last-child{
border-radius:6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border: 1px solid #e0e0e0; padding:6px 9px; color: #fff;
background-color: blue;
}

div#navigation li:last-child:hover{
background-color:orange;
}

我注意到 li:last-child:hover 没有“Anchor”引用,这可能是问题所在吗?

感谢您的关注!

最佳答案

div#navigation li a{color:#73737a;}
div#navigation li a:hover{color:#3ca2e0;}
div#navigation li#last-child{
border-radius:6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border: 1px solid #e0e0e0; padding:6px 9px; color: #fff;
background-color: blue;}

div#navigation li#last-child:hover{
background-color:orange;}

将您的 (li:last-child) 定义为一个 ID,然后应用悬停属性...希望它会有所帮助...

关于html - 将悬停样式应用于 li :last-child link,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18252539/

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