gpt4 book ai didi

html - 使用CSS在悬停时更改图像

转载 作者:太空宇宙 更新时间:2023-11-04 15:26:40 25 4
gpt4 key购买 nike

enter image description here

我对 css 了解不多,但我该怎么做才能更改子菜单上的元素符号图像?

#leftCntr .menuBox ul li a { padding: 0px 0px 0px 54px; color: #7d9696; text-decoration: none; background: url(../images/menuDisc.gif) 10px 4px no-repeat; }
#leftCntr .menuBox ul li a.active { color: #949494; background: url(../images/menuDiscHover.gif) 10px 4px no-repeat; }
#leftCntr .menuBox ul li a:hover { color: #000000; background: url(../images/menuDiscHover.gif) 10px 4px no-repeat; }

最佳答案

如果没有看到您的 HTML 代码很难判断,但我猜应该是这样的:

#leftCntr .menuBox ul li a {
padding: 0px 0px 0px 54px;
color: #7d9696;
text-decoration: none;
background: url(../images/menuDisc.gif) 10px 4px no-repeat;
}

#leftCntr .menuBox ul li a.active {
color: #949494;
background: url(../images/menuDiscHover.gif) 10px 4px no-repeat;
}

#leftCntr .menuBox ul li a:hover {
color: #000000;
background: url(../images/menuDiscHover.gif) 10px 4px no-repeat;
}

#leftCntr .menuBox ul li li a {
background: url(../images/submenuDisc.gif) 10px 4px no-repeat; /* Set the image here */
}

关于html - 使用CSS在悬停时更改图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13933322/

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