gpt4 book ai didi

css - css中的多个背景图片

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

这就是我想要做的...

ul#newnav a{ /*--This is basically the hover state of navigation--*/
color: #555;
background: url(images/a_bg.gif) repeat-x left bottom;}

ul#newnav a{ background: url(images/navpic.png) no-repeat top left;}

当然,它只加载最后一个,但无论如何我都可以加载。

最佳答案

你可以使用 :hover 伪类

ul#newnav a{ background: url(images/navpic.png) no-repeat top left;}

ul#newnav a:hover { /*--This is basically the hover state of navigation--*/
color: #555;
background: url(images/a_bg.gif) repeat-x left bottom;}

参见 The dynamic pseudo-classes: :hover, :active, and :focus

在 CSS3 中,一个元素可以有多个背景

参见 Multiple backgrounds with CSS3

关于css - css中的多个背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2497769/

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