2016-05-10 1 views

Antwort

0

Etwas ..

/* Outline due to focus */ 
input[type="button"]:focus { 
    outline: none !important; 
} 

oder ..

/* Any outlines applied */ 
#AutoRefresh { 
    outline: none !important; 
} 

..im Ihre CSS-Datei/<style>-Tag, oder was auch immer Methode von Styling Sie zutreffen.

Für Firefox:

input[type="button"]::-moz-focus-inner { 
    border : 0px; 
} 
+0

Eigentlich habe ich versucht, 'input [type = "button"]: aktiv: focus { outline: none; } 'Aber funktioniert nicht. – tom

+0

Ist es Browser-spezifisch? Gesehene Lösungen wie '#myButton: -moz-focusring { Umriss: 0px; } 'da rausgeschmissen werden –

+0

Siehe [diesen Beitrag] (http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links) zum Beispiel –