Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 24th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to remove blue border around the button in Firefox?
  2. button::-moz-focus-inner,
  3. input[type="button"]::-moz-focus-inner
  4. {
  5.     border: none;
  6.     outline: none;
  7. }
  8.        
  9. input[type="button"]:visited
  10. {
  11.     outline: none;
  12.     border: none;
  13. }
  14.        
  15. button { background: none transparent; border: none; }