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.
我以前没有遇到过这个问题,似乎找不到解决方案。问题是当我使用以下示例放置背景时,图像不会出现。
正如您在 chrome 上看到的那样,搜索栏应该看起来像这样,但在 Firefox 上它只是一个白框。
镀铬示例
background: url(../images/facebook.png) 95 20 no-repeat;
它在 IE 和 chrome 中工作得非常好,只是不是 firefox,这与位置整数或其他东西有关。
谢谢
丹尼
CSS 没有默认单位,因此 Firefox 不理解您的意思是像素。其他浏览器只是猜测并帮助您。将其更改为:
background: url(../images/facebook.png) 95px 20px no-repeat;
应该没问题。