I am trying to create a text shadow in Mozilla browsers only. (I'm using this as a workaround for some issues with a font that I'm using.)

I have tried -moz-text-shadow, but it seems that this is now defunct and it no longer needs the moz extension. But I don't want IE and Webkit to use the text shadow.

Why would the -moz function would be taken away?

link|improve this question
1  
That's kind of an odd requirement. Could you explain why you wouldn't want other browsers to render the same? For me, I was always struggling to make all the browsers behave the same; I've never even considered making them behave differently on purpose (they do a lot of that very well all by themselves >.< ) – Amadan Feb 16 at 17:43
because I'm working with font face and firefox has done the worst job at rendering the font. I have forced chrome to use svg and it looks great but the woff is looking awful in firefox. – user1171523 Feb 16 at 17:44
Then that's likely a problem with the font, and not with Firefox. In my experience, Firefox and IE9 do best at rendering fonts on Windows. – BoltClock Feb 16 at 17:47
-moz, -webkit, -o, -ms is called browser prefix. it used for browser that didn't support the property fully. – Ariona Rian Feb 16 at 17:54
Once a new CSS property has been hashed out, the vendor prefix is dropped - that's the behaviour we want, which is why new versions of Firefox don't support the old prefixed version. – Ed-M Feb 16 at 17:55
show 5 more comments
feedback

3 Answers

up vote 3 down vote accepted

You can target FF alone by using a CSS hack, such as:

body:not(:-moz-handler-blocked) a { background-color: red; }

Quick demo: http://jsfiddle.net/DxjeL/

Box should be red for firefox and blue for all the other browsers.

From http://paulirish.com/2009/browser-specific-css-hacks/

link|improve this answer
Perfect - Thank you! – user1171523 Feb 16 at 22:08
wow.. that's the solution.. – Ariona Rian Feb 17 at 1:12
feedback

Rough example:

text-shadow: 0 0 transparent;
-webkit-text-shadow: 0 0 transparent;
-khtml-text-shadow: 0 0 transparent;
-moz-text-shadow: 1px 1px #ff0000;
link|improve this answer
You didn't read the question. – BoltClock Feb 16 at 17:54
So are you saying I have to use text-shadow first if I want to use the moz only version too? I've tried -moz-text-shadow in a css class already, and it doesn't work, but when I drop the moz extension, it will work in all browsers, which isn't what I want. – user1171523 Feb 16 at 17:58
feedback

-moz, -webkit, -o, -ms is called browser prefix. it used for browser that didn't support the property fully. and now every modern browser except ie 8 and lower support text-shadow property. You can use javascript to detect browser and add text shadows property if you want to force adding text shadow for just firefox.

link|improve this answer
ok thanks, if this really is the only way then I'll skip it and just find some better fonts. Don't really want to use javascript for something like this. Thanks though – user1171523 Feb 16 at 18:04
feedback

Your Answer

 
or
required, but never shown

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