Are these Mozilla-specific CSS styles doing anything?
        Posted  
        
            by DisgruntledGoat
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by DisgruntledGoat
        
        
        
        Published on 2010-04-19T15:49:09Z
        Indexed on 
            2010/04/19
            16:03 UTC
        
        
        Read the original article
        Hit count: 217
        
I'm working with some CSS (from a Joomla template) like this:
div#logo {
    -moz-background-clip: border;
    -moz-background-inline-policy: continuous;
    -moz-background-origin: padding;
    background: transparent url(../images/head.png) no-repeat scroll 0 0;
    ...
}
I've looked up some of those -moz- properties and they seem to be assigned their default values, and if I turn them off in Firebug nothing happens visibly.
Would there be a reason to add them to a CSS file? Are they for an old version of Firefox perhaps?
© Stack Overflow or respective owner