/ Published in: CSS
Expand |
Embed | Plain Text
button::-moz-focus-inner { border: 0; }
Comments
Subscribe to comments
You need to login to post a comment.
Nettuts on 08/10/10
7 people have marked this snippet as a favorite
colingardom
hmvrulz
ahmedalttai
takel
baczoni
petemcbride
qubestream
button::-moz-focus-inner { border: 0; }
Subscribe to comments
You need to login to post a comment.
You would think that, with the button element, outlines could be removed with button:focus { outline: 0;} --- but that doesn't work. The code above will do the trick.
Actually, this only works if you use the < button > element as opposed to input type="button".