OPCIÓN 1: usar la :focus-visible
pseudoclase
La :focus-visible
pseudoclase se puede usar para eliminar los contornos antiestéticos y los anillos de enfoque en los botones y diversos elementos para los usuarios que NO navegan a través del teclado (es decir, mediante el toque o el clic del mouse).
/**
* The default focus style is likely provided by Bootstrap or the browser
* but here we override everything else with a visually appealing cross-
* browser solution that works well on all focusable page elements
* including buttons, links, inputs, textareas, and selects.
*/
*:focus {
outline: 0 !important;
box-shadow:
0 0 0 .2rem #fff, /* use site bg color to create whitespace for faux focus ring */
0 0 0 .35rem #069 !important; /* faux focus ring color */
}
/**
* Undo the above focused button styles when the element received focus
* via mouse click or touch, but not keyboard navigation.
*/
*:focus:not(:focus-visible) {
outline: 0 !important;
box-shadow: none !important;
}
Advertencia: a partir de 2020, la :focus-visible
pseudoclase no es ampliamente compatible en todos los navegadores . Sin embargo, el polyfill es muy fácil de usar; Vea las instrucciones a continuación.
OPCIÓN 2: usar el .focus-visible
polyfill
Esta solución utiliza una clase CSS normal en lugar de la pseudoclase mencionada anteriormente, y tiene un amplio soporte de navegador porque es un polyfill oficial basado en Javascript .
Paso 1: Agregue las dependencias de Javascript a su página HTML
Nota: el polyfill visible al foco requiere un polyfill adicional para varios navegadores antiguos que no admiten classList :
<!-- place this code just before the closing </html> tag -->
<script src="https://cdn.polyfill.io/v2/polyfill.js?features=Element.prototype.classList"></script>
<script src="https://unpkg.com/focus-visible"></script>
Paso 2: agrega el siguiente CSS a tu hoja de estilo
La siguiente es una versión modificada de la solución CSS documentada más detalladamente arriba.
/**
* Custom cross-browser styles for keyboard :focus overrides defaults.
*/
*:focus {
outline: 0 !important;
box-shadow:
0 0 0 .2rem #fff,
0 0 0 .35rem #069 !important;
}
/**
* Remove focus styles for non-keyboard :focus.
*/
*:focus:not(.focus-visible) {
outline: 0 !important;
box-shadow: none !important;
}
Paso 3 (opcional): use la clase 'focus-visible' cuando sea necesario
Si tiene algún elemento en el que realmente desea mostrar el anillo de enfoque cuando alguien hace clic o usa el tacto, simplemente agregue la focus-visible
clase al elemento DOM.
<!-- This example uses Bootstrap classes to theme a button to appear like
a regular link, and then add a focus ring when the link is clicked --->
<button type="button" class="btn btn-text focus-visible">
Clicking me shows a focus box
</button>
Recurso:
Manifestación: