Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Targeting only Firefox with CSS

I need to target firefox specifically because of their min-width / box-sizing bug.

So I have 1 normal min-width, but for mozilla I want a different min-width.

Is there any pure CSS/HTML solution available?

Thanks

share|improve this question
what min-width firefox problems? Create a JSfiddle.net – MiG Sep 20 '11 at 18:49
Which versions of Firefox? – Pekka 웃 Sep 20 '11 at 18:51
@MiG bug in question: bugzilla.mozilla.org/show_bug.cgi?id=653643 – Harry Sep 20 '11 at 18:56
From reading the linked-to bug report, it appears that this bug is triggered by using "-moz-box-sizing:border-box". Is there any way you could either stop using this property or switch the effected elements to "-moz-box-sizing:content-box" instead of using a hack (not a best practice by any stretch of the imagination)? – Nathan Arthur Sep 20 '11 at 21:01

marked as duplicate by sdleihssirhc, thirtydot, Jeff Atwood Sep 21 '11 at 7:19

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 6 down vote accepted

You can use the following to target (as far as I understand it) all versions of Firefox, and nothing else:

@-moz-document url-prefix() {
    /* firefox-only css goes here */
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.