I have recently developed an HTML5 jQuery plugin and I\'m having trouble removing the red border on required fields in FF4 beta.
I noticed that FF applies this borde
use this code as Quick and simple solution
:invalid { box-shadow: none; } :-moz-submit-invalid { box-shadow: none; } :-moz-ui-invalid { box-shadow:none; }
Reference:- https://developer.mozilla.org/en-US/docs/Web/CSS/:invalid