Targeting only Firefox with CSS
Asked Answered
R

14

729

Using conditional comments it is easy to target Internet Explorer with browser-specific CSS rules:

<!--[if IE 6]>
...include IE6-specific stylesheet here...
<![endif]-->

Sometimes it is the Gecko engine (Firefox) that misbehaves. What would be best way to target only Firefox with your CSS rules and not a single other browser? That is, not only should Internet Explorer ignore the Firefox-only rules, but also WebKit and Opera should.

Note: I'm looking for a 'clean' solution. Using a JavaScript browser sniffer to add a 'firefox' class to my HTML does not qualify as clean in my opinion. I would rather like to see something that depends on browser capabilities, much like conditional comments are only 'special' to IE…

Remote answered 4/6, 2009 at 20:19 Comment(3)
Might want to look at some similar questions and thier related answers... #739331Glissando
is there any way to target firefox on a windows machine vs a mac?Dissonancy
<!--[if Gecko ]> ...include... <![endif]-->Denouement
C
1439

This solution does not rely on JavaScript being turned on.

@-moz-document url-prefix() {
  h1 {
    color: red;
  }
}
<h1>This should be red in FF</h1>

It's based on yet another Mozilla-specific CSS extension. There's a whole list of these CSS extensions right here: Mozilla CSS Extensions. ⚠ Do note that they are mostly deprecated!

For more information about this specific CSS extension, see this question: What does @-moz-document url-prefix() do?

Cantankerous answered 4/6, 2009 at 22:43 Comment(13)
What exactly does the url-prefix() mean after the "@-moz-document" ? just curious.Donnie
@Matt, that's a way to filter the websites on which that CSS is applied. Another option is to use the domain() filter. For example @-moz-document domain(google.com) {...} will apply the enclosed CSS rules only on the google.com domain.Castleman
I like how you don't have to create an entirely new CSS document for this like you do for IE.Berchtesgaden
@JohnIsaacks You don't need a separate stylesheet for the IE conditional comments. They can be inline. Whether you want to do it that way is another question.Azoic
For those using Razor syntax with asp.net mvc3, the "@" symbol can be escaped by replacing it with "@@".Originative
Thanks for this, now i have a workaround for the stupid Fieldset borders in FF.Sheathbill
Isn't this considered a CSS hack? I thought CSS hacks were very much not an acceptable solution for more than one reason (not the least of which being not future-proof)?Aramenta
This is a great work around, however adding this to a CSS in VS 2012 gives some issues. The syntax isn't recognised by the schema so pressing CTRL+K, CTRL+D to format appends a semi-colon at the end of my first selector "#nav-main-mega li a"Petrie
@Petrie I'm having the same issue with VS 2012 and asked it in a question. I tried doing what you said in pressing CTRL+K, CTRL+D and gives me the same result.Progestin
It's worth noting that this workaround no longer works as of Firefox 59, released March 2018: bugzilla.mozilla.org/show_bug.cgi?id=1035091Octagonal
"no longer works as of Firefox 59", but it was fixed in Firefox 61: [bugzilla.mozilla.org/…Herstein
For what it's worth, this does not work for me on Firefox 89, at least on the Mac. The solution below using @supports did work for me, however.Subarctic
This works perfectly - tried it on FF 96 and Chrome Version 97.0. The rule only applies on FF : )Sheepshank
K
193

Updated(from @Antoine comment)

You can use @supports

@supports (-moz-appearance:none) {
    h1 { color:red; } 
}
<h1>This should be red in FF</h1>

More on @supports here

Kafiristan answered 8/9, 2015 at 10:10 Comment(5)
This is a much nicer solution than @-moz-document url-prefix() example, it also plays nice with SCSS parser whereas the other one didn't.Cupriferous
I'm using Firefox and it's still white, is it because of the version I'm using ?Inept
@Inept You are right! It didn't work for latest versions of FF. I updated my answer. It should work now. Thanx for pointing it out!Kafiristan
Same for me, @JavierC.H. -- this is the only approach that worked for me in Firefox 89, at least on the Mac.Subarctic
Confirming this still works in FF 125Irrationality
N
84

Here is how to tackle three different browsers: IE, FF and Chrome

<style type='text/css'>
/*This will work for chrome */
#categoryBackNextButtons
{
    width:490px;
}
/*This will work for firefox*/
@-moz-document url-prefix() {
    #categoryBackNextButtons{
        width:486px;
    }
}
</style>
<!--[if IE]>
<style type='text/css'>
/*This will work for IE*/
#categoryBackNextButtons
{
    width:486px;
}
</style>
<![endif]-->
Nonparous answered 21/1, 2011 at 9:33 Comment(3)
If I understand this correctly, the top one isn't chrome, but just specifies the default behavior which you override for Firefox and IE.Ahn
Very useful. As an ex Firefox lover, I'm gutted that I have to do Firefox specific hacks like this but so long as it works I can live with it.Degraded
The suggestion for IE detection does not work if you want to add it into a .css file. You can include stylesheets with it that way in HTML though. If you want to have IE CSS in a CSS file, I recommend looking at here: keithclark.co.uk/articles/…Teakwood
K
16

Here is some browser hacks for targeting only the Firefox browser,

Using selector hacks.

_:-moz-tree-row(hover), .selector {}

JavaScript Hacks

var isFF = !!window.sidebar;

var isFF = 'MozAppearance' in document.documentElement.style;

var isFF = !!navigator.userAgent.match(/firefox/i);

Media Query Hacks

This is gonna work on, Firefox 3.6 and Later

@media screen and (-moz-images-in-menus:0) {}

If you need more information,Please visit browserhacks

Kylix answered 20/8, 2014 at 5:45 Comment(4)
Could you elaborate a bit more on "using selector hacks" and on how the example you provided specifically works? Thanks.Primula
Alright got it myself: basically what it does is hiding the second selector to other browsers which don't understand the first one. In this case only Mozilla understands _:moz-tree-row(hover) so it will be the only one to be able to process the .selector{} coming after. This specifical hacks currently works on all version of Firefox, check browserhacks.com for more on this.Primula
I used the Media Query Hack: \@media screen and (-moz-images-in-menus:0) {} This goes nicely with \@media screen and (-webkit-min-device-pixel-ratio:0) and Visual Studio does not throw a warning using it.Carlottacarlovingian
Please note -moz-images-in-menus:0 has been removed in Firefox 52 - bugzilla.mozilla.org/show_bug.cgi?id=1302157Arielariela
C
13

First of all, a disclaimer. I don't really advocate for the solution I present below. The only browser specific CSS I write is for IE (especially IE6), although I wish it wasn't the case.

Now, the solution. You asked it to be elegant so I don't know how elegant is it but it's sure going to target Gecko platforms only.

The trick is only working when JavaScript is enabled and makes use of Mozilla bindings (XBL), which are heavily used internally in Firefox and all other Gecko-based products. For a comparison, this is like the behavior CSS property in IE, but much more powerful.

Three files are involved in my solution:

  1. ff.html: the file to style
  2. ff.xml: the file containg the Gecko bindings
  3. ff.css: Firefox specific styling

ff.html

<!DOCTYPE html>

<html>
<head>
<style type="text/css">
body {
 -moz-binding: url(ff.xml#load-mozilla-css);
}
</style>
</head>
<body>

<h1>This should be red in FF</h1>

</body>
</html>

ff.xml

<?xml version="1.0"?>

<bindings xmlns="http://www.mozilla.org/xbl">
    <binding id="load-mozilla-css">
        <implementation>
            <constructor>
            <![CDATA[
                var link = document.createElement("link");
                    link.setAttribute("rel", "stylesheet");
                    link.setAttribute("type", "text/css");
                    link.setAttribute("href", "ff.css");

                document.getElementsByTagName("head")[0]
                        .appendChild(link);
            ]]>
            </constructor>
        </implementation>
    </binding>
</bindings>

ff.css

h1 {
 color: red;
}

Update: The above solution is not that good. It would be better if instead of appending a new LINK element it will add that "firefox" class on the BODY element. And it's possible, just by replacing the above JS with the following:

this.className += " firefox";

The solution is inspired by Dean Edwards' moz-behaviors.

Cantankerous answered 4/6, 2009 at 21:2 Comment(0)
Z
12

Using -engine specific rules ensures effective browser targeting.

<style type="text/css">

    //Other browsers
    color : black;


    //Webkit (Chrome, Safari)
    @media screen and (-webkit-min-device-pixel-ratio:0) { 
        color:green;
    }

    //Firefox
    @media screen and (-moz-images-in-menus:0) {
        color:orange;
    }
</style>

//Internet Explorer
<!--[if IE]>
     <style type='text/css'>
        color:blue;
    </style>
<![endif]-->
Zildjian answered 13/1, 2015 at 16:57 Comment(0)
C
8

A variation on your idea is to have a server-side USER-AGENT detector that will figure out what style sheet to attach to the page. This way you can have a firefox.css, ie.css, opera.css, etc.

You can accomplish a similar thing in Javascript itself, although you may not regard it as clean.

I have done a similar thing by having a default.css which includes all common styles and then specific style sheets are added to override, or enhance the defaults.

Cycloplegia answered 4/6, 2009 at 20:26 Comment(2)
That does some like a nice and stable approach &mdash; thanks &mdash; although it still depends on browser sniffing. I'd rather use something that depends on capability, like a Gecko-only CSS rule or something. I do use the same basic approach: default styles and browser-specific add-ons.Remote
@avdaag: Capability detection is preferred in most cases, but when you're trying to inject a hack to "fix" a specific rendering engine's bug, then targeting the user agent is, in theory, the optimal solution. You're not discriminating against unknown browsers; and the user-agent field is supposed to tell you what rendering engine the browser is using, so even if a rare Gecko browser comes along, it'll still be given the fix. That said, a lot of browsers now fake their user-agent strings due to inappropriate use of browser-detection. So in practice it might not work out so well.Discrown
I
8

Now that Firefox Quantum 57 is out with substantial — and potentially breaking — improvements to Gecko collectively known as Stylo or Quantum CSS, you may find yourself in a situation where you have to distinguish between legacy versions of Firefox and Firefox Quantum.

From my answer here:

You can use @supports with a calc(0s) expression in conjunction with @-moz-document to test for Stylo — Gecko does not support time values in calc() expressions but Stylo does:

@-moz-document url-prefix() {
  @supports (animation: calc(0s)) {
    /* Stylo */
  }
}

Here's a proof-of-concept:

body::before {
  content: 'Not Fx';
}

@-moz-document url-prefix() {
  body::before {
    content: 'Fx legacy';
  }

  @supports (animation: calc(0s)) {
    body::before {
      content: 'Fx Quantum';
    }
  }
}

Targeting legacy versions of Firefox is a little tricky — if you're only interested in versions that support @supports, which is Fx 22 and up, @supports not (animation: calc(0s)) is all you need:

@-moz-document url-prefix() {
  @supports not (animation: calc(0s)) {
    /* Gecko */
  }
}

... but if you need to support even older versions, you'll need to make use of the cascade, as demonstrated in the proof-of-concept above.

Insupportable answered 14/12, 2017 at 4:11 Comment(0)
N
4

with -moz prefix

div:-moz-read-only {
  background: green;
}

textarea:-moz-read-write {
  background: green;
}

:-moz-any(div#foo) div.bar {
  background: green;
}

li:-moz-first-node, li:-moz-last-node {
  background: green;
}
Noria answered 30/5, 2021 at 16:53 Comment(0)
M
3

The only way to do this is via various CSS hacks, which will make your page much more likely to fail on the next browser updates. If anything, it will be LESS safe than using a js-browser sniffer.

Mog answered 4/6, 2009 at 20:22 Comment(0)
P
2

CSS support can be used from JavaScript.

if (CSS.supports("( -moz-user-select:unset )")) {
    console.log("FIREFOX!!!")
}

https://developer.mozilla.org/en-US/docs/Web/CSS/Mozilla_Extensions

Purser answered 16/3, 2019 at 16:52 Comment(0)
B
2

How to Apply CSS to Only Firefox

This solution below offers you decent Firefox-only CSS support in a wider range of Firefox browser versions...

@supports (-moz-appearance:button) and (contain:paint) {

  body {
    background: red;
  }

}

-moz-appearance:button was supported in Mozilla/Firefox as early as 2006. But the @supports rule was not supported till 2019 so that would be the earliest Firefox browser supporting this rule. contain:paint excludes Safari browsers from the rule. Internet Explorer and early Trident Edge browsers do not support @supports so also excluded from seeing the CSS rule. No known Chrome browser should support -moz-appearance:button, so excluded.

As always, all my CSS solutions are 100% JavaScript-free :)

Brendis answered 7/8, 2022 at 2:51 Comment(0)
M
1

The following code tends to throw Style lint warnings:

@-moz-document url-prefix() {
    h1 {
        color: red;
    }
}

Instead using

@-moz-document url-prefix('') {
    h1 {
        color: red;
    }
}

Helped me out! Got the solution for style lint warning from here

Meghan answered 29/11, 2017 at 9:46 Comment(0)
R
0

I use this with Google Web Designer to target Firefox

@supports (-moz-appearance:none) {
  .class-name {
        
  }
}
Raver answered 27/6, 2023 at 18:44 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.