Keyboard navigation, the basics

First: Activate Keyboard Navigation in Mac Browsers

Good overview: Keyboard Navigation Overview on WebAIM

Focusable HTML elements

Try it yourself on: Exercise keyboard navigation

Visible Focus

Browsers add a visible focus to an element but some CSS resets add:outline: 0;. This makes it very hard to navigate a site with a keyboard only.

Add :focus where you add :hover in your CSS.

Tab index

Add focus to an element:

Avoid hijacking the tabindex: it makes it laborious for keyboard users to access the menu.