开发者

Does the css background-size not work in FF 3.6.x?

开发者 https://www.devze.com 2023-03-28 03:47 出处:网络
Checkout my site in FF 3.6: www.compversions.com and look at it in every other newer browser (FF4+, Chrome latest builds, IE9, etc.) and they all look fine.

Checkout my site in FF 3.6:

www.compversions.com and look at it in every other newer browser (FF4+, Chrome latest builds, IE9, etc.) and they all look fine.

In ff 3.6, the logo and the chameleon are too big.

What's the 开发者_开发百科fix here, or do I need to clear my cache or something because you guys don't see any problems in your ff 3.6?

Thanks.


According to When can I use, you need to prefix the background-size property with -moz- in Firefox 3.6:

-moz-background-size: <your settings>;
background-size: <your settings>;

Make sure you put background-size last so it overrides the vendor-specific prefix.

0

精彩评论

暂无评论...
验证码 换一张
取 消