1
HTML/CSSBeginner#seo#html
It means every interactive element (links, buttons, forms, custom widgets) can be reached and operated using only the keyboard (Tab, Shift+Tab, Enter, Space, arrows). Test by tabbing through the whole page and verifying visible focus indicators and logical order.
/* Never remove focus outlines without a replacement */
button:focus-visible {
outline: 2px solid #2563eb;
outline-offset: 2px;
}