gpt4 book ai didi

jquery - 带有子菜单对象的菜单框中的图像

转载 作者:行者123 更新时间:2023-11-28 13:29:53 25 4
gpt4 key购买 nike

我正在处理一个 css 菜单,并希望所有具有子菜单的菜单在框的侧面都有一个 > 图像。

这是代码:http://jsfiddle.net/u9KrH/4/还有两个 JS 文件,但我无法将它们附加到该编辑器,但您可以在此处查看它的运行情况:http://trulyscience.com/test/index.php

我希望更改 ul.dropdown li:last-child a 可以完成这项工作,但这根本没有解决问题。所以现在我一无所知,有人有什么建议吗?

最佳答案

在 trulescience.com 页面上,您只需调整 ul.dropdown li:last-child a 的背景属性。

CSS默认平铺背景,所以需要替换

background-image: url('images/redarrow.jpg');

background: url('images/redarrow.jpg') no-repeat right center;

它定位背景并停止重复。您还可以使用 px 或 % 值代替“右”和“中心”。

相同代码的更详细版本是:

background-image: url('images/redarrow.jpg');
background-position: right center;
background-repeat: no-repeat;

结果是:

repeating CSS background

变成:

Positioned CSS background

关于jquery - 带有子菜单对象的菜单框中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12168182/

25 4 0