I use the new CSS3 specification "background-size" to have a background image that slightly overflows the page size. It works fine in webkit (Chrome and Safari), but the -moz-background-size property doesn't work at all in Firefox. Unusually, if you are viewing the site live, the "-moz-background-size" IS property is displayed when viewing the site using Firebug! FF docs say it is supported with 3.6 and I am running 3.6.
Here is my code:
@media screen and (max-width: 1150px) {
body{
-o-background-size: 130%; -webkit-background-size: 130%; -khtml-background-size: 130%; -moz-background-size: 130%;
background-size: 130%;
}
#trans_fake{
-o-background-size: 130%; -webkit-background-size: 130%; -khtml-background-size: 130%; -moz-background-size: 130%;
background-size: 130%;
}
}
Any debugging suggestions?
... QuirksMode.org "" , , css3 Firefox 3.6:(
http://www.quirksmode.org/css/background.html