CSS导航菜单自定义符号

时间:2011-08-17 16:54:10

标签: css

我正在尝试计算此页面上导航菜单项的悬停事件中“加号”符号的显示方式:http://www.syracusecoe.org/coe/

任何人都可以提出一些建议。

感谢。

2 个答案:

答案 0 :(得分:0)

悬停状态使用CSS添加背景图像。

答案 1 :(得分:0)

它被添加为背景图像... 你可以在这里找到样式

http://www.syracusecoe.org/coe/SpryAssets/SpryMenuBarVertical.css

第175行。

这是代码,因为在浏览器中找到第175行可能很难。

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
    background-image: url(../switchimages//wh_cross.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

哦,这是一个使用javascript添加的类,它不是css:hover就是这样。