Qui ho un CSS selettore sulla base di bobince 's risposta per selezionare qualsiasi elemento HTML attivabile:
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 */
}
o un po 'più bello 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 */
}
}
L'ho aggiunto come risposta, perché era quello che stavo cercando, quando Google mi ha reindirizzato a questa domanda StackOverflow.
EDIT: c'è un altro selettore, che è focalizzabile:
[contentEditable=true]
Tuttavia, questo è usato molto raramente.