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.

Is it possible to detect Firefox Browser only with CSS like IE?

for example, IE browser can be detected like:

<!--[if IE 7]>
   /* IMPORTING CSS FOR IE */
<![endif]-->

Can be Firefox browser detected like this code?

share|improve this question
1  
Basically, no. So far as conditional comments go it's either IE or not-IE, unfortunately. – David Thomas May 3 '11 at 18:44
Please use a descriptive title when posting a question instead of just a seperated set of keywords. – Aron Rotteveel May 3 '11 at 18:46
The question is why you would want to detect Firefox? Do you have any certain reason to do so? Firefox CSS support isn't broken, unlike IE. – GlitchMr May 3 '11 at 18:47
I want to change some element position only for Firefox. in other browsers it works correctly. – zur4ik May 3 '11 at 18:51
1  
@GlitchMr Are you serious? You think Firefox doesn't display things differently (like all individual browsers)? What do you mean why would he want to do this? I just got through making a complex form for a database-driven web-interface site, and Firefox is the only browser that for some reason likes to scrunch all the texareas too close to the other fields. If I spread them out then they are too far apart for IE and Chrome. I know that detecting a browser and styling differently based on this detection shouldn't be the first answer, but to wonder why he would want this is just, well, weird... – VoidKing Oct 26 '12 at 14:11

1 Answer

up vote 19 down vote accepted

Not that I know of, but you can try this:

@-moz-document url-prefix() {

    #my-id { font-size: 100%; }

}

This website has more options as well

You can place this in your CSS file or between your <style type='text/css'> tags in your HTML. Works Fine!

share|improve this answer
Thanks! That works for me :) – zur4ik May 3 '11 at 18:49
@Peppered Lemons Do you mind clarifying where that goes? CSS file, js file, or cshtml file? – VoidKing Oct 26 '12 at 14:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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