Donmclean
2/8/2016 - 11:44 PM

Detect FireFox in HTML/CSS<style type="text/css"> @-moz-document url-prefix() { h1 { color: red; } } </style> </head> <body>

Detect FireFox in HTML/CSS

This should be red in FF

@-moz-document url-prefix() {
    h1 {
        color: red;
    }
}
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
@-moz-document url-prefix() {
    h1 {
        color: red;
    }
}
</style>
</head>
<body>

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

</body>
</html>