Remove firefox glow on focused textarea?

You can remove it with -moz-appearance:none though that may affect the whole appearance more than you're wanting.

Up vote 1 down vote favorite share g+ share fb share tw.

I can't figure this one out.. I'm trying to get rid of that blue glow when textarea is highlighted in firefox. Here's my CSS: textarea { margin:0; padding:0; width: 598px; height: 600px; resize: none; outline: none; } :focus { outline:0; outline:none; } It removes it in safari, but I'm have no luck with firefox. Thanks!

Matt css firefox textarea link|improve this question asked Jul 24 '10 at 0:03Matt1,4481034 71% accept rate.

You can remove it with -moz-appearance:none;, though that may affect the whole appearance more than you're wanting.

Beautiful.. Thanks! It just removes it on all textarea's which is fine. – Matt Jul 24 '10 at 0:22.

How about *:focus {outline:0px none transparent;}.

This also works for Webkit/Chrome. – mikermcneil Jan 2 at 0:48.

Just add or define a border... for instance, if a border is defined and I've added outline: none; to my CSS, this does the trick.

You cannot remove the glow in Firefox I think.. Only way to do that would be by adding a custom border to your element, like border: 1px black;, that would make the input box have no glow at all. Only popular browsers which allows the outline tag are Safari and Chrome (not sure about linux browsers).

I'm fairly sure that's a Mac OS X theme-specific behaviour.

The better way to fix this, in my opinion, is define a custom border and :focus behavior. Textarea { margin:0; padding:0; width: 598px; height: 600px; resize: none; outline: none; border: none; } textarea:focus { outline: none; border: none; }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions