Skip to content Skip to sidebar Skip to footer

Default Submit Button Style For Form

Now I know this issue is over-talked about but I cannot seem to find a question that addresses this little gem directly so here goes... In Opera and IE when a form has focus the de

Solution 1:

I tried and tried but I don't think this is possible.


Solution 2:

try doing

<input type='submit' autocomplete='off' style='outline:none;'/>

this worked for me in text fields - I'm not sure if it carries over to submit or button elements but it's worth a try.


Solution 3:

Kinda hackish, but definitely works..

<input type='submit' onfocus="blur()" />

Post a Comment for "Default Submit Button Style For Form"