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.
我在我的网站上添加了一个用于一些链接/图标的顶部栏,它在除 IE 8 之外的所有浏览器中都能正常工作。我为此添加了条件格式,但没有任何效果。尝试删除黑条背景,但它们仍然不会显示。您可以将鼠标悬停在它们应该在的空间上并单击链接,但显然它们不会显示。
网站
我只在 IE<9 中遇到过 CSS sprites 的问题。
错误代码:
#nav_garments{background:url(objectsConst.png)-678px 0px no-repeat;}
好代码:
#nav_garments{background:url(objectsConst.png) -678px 0px no-repeat;}
注意括号后面的空格。
希望有帮助。