Post
CSS: Target Firefox Only
I’ve had a few instances lately where I needed to target Firefox only in my CSS stylesheet. This is the best method I’ve found:
/* Target Firefox Only */
@-moz-document url-prefix() {
#selector {
margin-top: 100px;
}
}