Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我这里有这个 CSS 脚本
#social_side_links li:nth-child(3):hover { image }
但它不起作用....我的图像没有显示出来,是的,路径绝对正确...我需要这样写吗
#social_side_links li:hover nth-child(3) {
这应该可以正常工作。
http://jsfiddle.net/EeHdF/
#social_side_links li:nth-child(3):hover { border:1px solid #000; }
像您在此处那样链接 :nth-child 和 :hover 应该可以正常工作。但是,如果您使用的是 IE6,则只会识别链中的最后一个伪类。
我知道您觉得图像是正确的,但请尝试另一个 CSS 定义,如边框(上图),看看您的定义或选择器是否有问题。