I have some required fields in the form. For required fields I want 1px red border for highlighting form fields after form submit. Chrome is doing that perfectly. IE is giving t
This ugly appearance in IE is caused by the outline property. You can remove it with this:
input:required:invalid { outline: none; }