Getting started with NVDA
Table of Contents
NVDA is a free and open source screen reader from NVAccess. It is available for the Windows operating system and officially supports Internet Explorer, Firefox, and Chrome web browsers. There is also a ton of braille display support!
NVDA is available for download here: nvaccess.org/download
After everything is installed you can press Ctrl + Alt + n to start NVDA. Quitting NVDA is done by pressing NVDA + q, then Enter at the prompt.
The NVDA modifier key
Each screen reader has a special key or key combination to perform tasks. NVDA’s default keyboard modifier key is the Insert key. So, for example, to start reading a web page, you could press Insert + Down Arrow. As an option, if you are using a laptop you can also use the caps lock key as a modifier. This can be set in the Preferences > Keyboard settings...
menu.
Reading text
Here are some basic shortcuts to read text using NVDA.
Command | Description |
---|---|
Ctrl | Stop reading |
NVDA + Down arrow | Start reading from current position |
NVDA + Up arrow | Read current line |
Ctrl + Left/right arrow | Read previous/next word |
Ctrl + Up/down arrow | Read previous/next paragraph |
Up / Down arrow | Read previous/next line |
Left / Right arrow | Read previous/next character |
Shortcut keys
These shortcut keys can be used to quickly jump between specific elements on a page. Elements can be cycled through backwards by holding shift
, then press the shortcut key.
Key | Description |
---|---|
Tab | Move to next focusable element |
d | Navigate through landmarks |
k | Navigate through links |
h | Navigate through headings |
1 - 6 | Navigate through headings level 1 to 6 |
f | Navigate through forms |
t | Navigate through tables |
Ctrl + Alt + Up / Down / Left / Right arrow | Navigate table content |
b | Navigate through buttons |
l | Navigate through lists |
i | Navigate through list items |
g | Navigate through graphics / images |
Advanced navigation
By pressing NVDA + F7, NVDA displays a listing of all elements on the page. This is helpful to quickly skip to a specific area or element on the page. It also helps with testing by gaining an understanding of what each element might sound like to the end user. Do those “read more” links give enough context to be useful?
Descriptive output
If you’re used to using VoiceOver and miss the on-screen text description output, NVDA also has this available as a feature. To enable descriptive text output, check the Tools > Speech viewer
checkbox. This will open a new, always-on-top, window with a continuous log of text that is being described by NVDA.
A note on styling
One feature that other screen readers have that NVDA doesn’t is custom focus styles. Others like Apple’s VoiceOver or Google’s Chromevox have a custom focus style for links or for input controls that aid in navigation. NVDA does not have a custom focus style so it is very important to style page elements with the :focus
pseudo-class. It’s good to make a habit of adding this whenever the :hover
pseudo-class is used. Also, avoid using outline: none
as this removes focus styles completely from view.
Further reading
- NVDA 2020.1 User Guide NV Access
- NVDA keyboard shortcuts Deque University
- NVDA tutorials: learning the basics accessibilitycentral.net