/* Helps locate focus */
:focus {
border: 2px solid red
!important;
}
/* Helps locate focus */
document.activeElement;
tabindex="-1" ✔
tabindex="0" ✔
tabindex="1" ✘
(Pronounced Alix)
http://bit.ly/2rdkDOS https://ffoodd.github.io/a11y.css/Ex: CSS Toolbar "Widget"
.toolbar:not([role="group"]) {
position: relative;
}
.toolbar:not([role="group"]):before {
background-color: #dc143c;
color: #fff;
content: "A11y: Role of 'group' is missing.";
font-size: 1rem;
left: 0;
padding: 0.625rem;
position: absolute;
top: -2.875rem;
}
.toolbar:not([aria-label]),
.toolbar:not([aria-label=""]) {
position: relative;
}
.toolbar:not([aria-label]):before,
.toolbar:not([aria-label=""]):before {
background-color: #dc143c;
color: #fff;
content: "A11y: Unique aria-label is missing.";
font-size: 1rem;
left: 0;
padding: 0.625rem;
position: absolute;
top: -2.875rem;
}