Burada CSS-seçici dayalı olması bobince 'ın cevabı herhangi odaklanabilir HTML öğesi seçmek için:
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 */
}
ya da SASS'ta biraz daha güzel:
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 */
}
}
Bunu bir cevap olarak ekledim, çünkü Google beni bu Stackoverflow sorusuna yönlendirdiğinde aradığım şey buydu.
EDIT: Odaklanabilen bir tane daha seçici var:
[contentEditable=true]
Ancak, bu çok nadiren kullanılır.