1

On focusing of the <button> tag, I'm unable to remove dotted border around its text.

I tried

border:0, outline: 0 

properties. These properties only remove border and outline from <button> but border around text comes on focusing of button.

Here is my fiddle: https://jsfiddle.net/souviksarkar86/4shqvaq8/

Mr Lister
  • 45,515
  • 15
  • 108
  • 150
Souvik Sarkar
  • 49
  • 1
  • 8

1 Answers1

0

This might be what you are looking for:

button::-moz-focus-inner {
  border: 0;
}
Joel28
  • 1