【发布时间】:2013-10-20 14:44:32
【问题描述】:
我的内容容器中的背景图像阴影有问题。在 Chrome 中是背景位置正确但在 firefox 中是错误的。
这里是我的测试站点:http://www.behringer-mauch.de/Tischler_Hehmann/index.php
我希望有人有想法。
【问题讨论】:
标签: css background-image background-position
我的内容容器中的背景图像阴影有问题。在 Chrome 中是背景位置正确但在 firefox 中是错误的。
这里是我的测试站点:http://www.behringer-mauch.de/Tischler_Hehmann/index.php
我希望有人有想法。
【问题讨论】:
标签: css background-image background-position
CSS 规范中未批准 x 和 y 的单独背景位置,因此
background-position-x: 80%;
background-position-y: bottom;
可以在 Chrome 中运行,但不能在其他浏览器中运行。
【讨论】:
为 mozilla firefox 使用前缀 -moz-。
示例
-webkit-linear-gradient 用于基于 Webkit 的浏览器 (Chrome)
-moz-linear-gradient 用于 Mozilla Firefox
【讨论】: