This answer says we can target Firefox using the following CSS:
    @-moz-document url-prefix() {
      h1 {
        color: red;
      }
    }    <h1>This should be red in FF</h1>I want to apply a CSS rule to all browsers except gecko/Firefox, as the CSS rule doesn't display properly in Firefox.
How do I use CSS to target everything except Firefox?
Thanks.
 
    