Hier habe ich einen CSS-Selektor basierend auf bobince ‚s Antwort jedes fokussierbarem HTML - Element zu wählen:
a[href]:not([tabindex='-1']),
area[href]:not([tabindex='-1']),
input:not([disabled]):not([tabindex='-1']),
select:not([disabled]):not([tabindex='-1']),
textarea:not([disabled]):not([tabindex='-1']),
button:not([disabled]):not([tabindex='-1']),
iframe:not([tabindex='-1']),
[tabindex]:not([tabindex='-1']),
[contentEditable=true]:not([tabindex='-1'])
{
/* your CSS for focusable elements goes here */
}
oder etwas schöner in SASS:
a[href],
area[href],
input:not([disabled]),
select:not([disabled]),
textarea:not([disabled]),
button:not([disabled]),
iframe,
[tabindex],
[contentEditable=true]
{
&:not([tabindex='-1'])
{
/* your SCSS for focusable elements goes here */
}
}
Ich habe es als Antwort hinzugefügt, da ich genau danach gesucht habe, als Google mich zu dieser Stackoverflow-Frage weitergeleitet hat.
EDIT: Es gibt noch einen Selektor, der fokussierbar ist:
[contentEditable=true]
Dies wird jedoch sehr selten verwendet.