Tutaj mam selektor CSS w oparciu o bobince „s odpowiedzi , aby wybrać dowolną zmianę ostrości element HTML:
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 */
}
lub trochę piękniej w 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 */
}
}
Dodałem go jako odpowiedź, ponieważ tego właśnie szukałem, gdy Google przekierowało mnie do tego pytania Stackoverflow.
EDYCJA: Jest jeszcze jeden selektor, który można ustawić:
[contentEditable=true]
Jest to jednak stosowane bardzo rzadko.