“Botón HTML Eliminar el borde al hacer clic” Código de respuesta

Cómo eliminar el borde del botón Haga clic

.btnName{
	outline: none;
}
Silly Skylark

Eliminar en el borde de clics

outline:none;
Gorgeous Gemsbok

Botón HTML Eliminar el borde al hacer clic

.x-btn:focus, .button:focus, [type="submit"]:focus {
   outline: none;
}
Dizzy Dunlin

Botón Eliminar el borde si hace clic

<style>
input[type="button"]
{
    width:120px;
    height:60px;
    margin-left:35px;
    display:block;
    background-color:gray;
    color:white;
    border: none;
    outline:none;
}
</style>
Colorful Crocodile

Eliminar el borde del botón haciendo clic

<button style="outline: none;"></button>
Poised Penguin

Botón HTML Eliminar el borde al hacer clic

button,
button:active,
button:focus {
  outline:none !important;
   box-shadow: none !important;
   outline-style: none !important;
}
Black Batfish

Respuestas similares a “Botón HTML Eliminar el borde al hacer clic”

Preguntas similares a “Botón HTML Eliminar el borde al hacer clic”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código