3. NAVIGATING CONTENT Flashcards

1
Q

¿What can happen if you create screen readers only content?

A

It can actually create a worse user experience for some users. Besides which, it can create a maintenance headache when it comes to things like internationalization.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

¿Which are the three common patterns that can cause the screen reader to miss links in the page?

A
  1. One is using a span, with some link styling, or an anchor tag without an href attribute.
  2. Something which is implemented using a link but is really more like a button; for this case, we’ll just replace that anchor tag with a button tag and style it appropriately.
  3. Where we have an image used as link content; for an assistive technology this makes the link unusable.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

¿What should any link text do?

A

In general, link text should give any user enough information to decide whether they want to click it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

¿What should I use an anchor with the href attribute for?

A

For anything which behaves like a link, including within a single page application.
No exceptions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

¿Why to always use anchor with href?

A

Not only will this make the link show up in the links list, but it automatically works with the keyboard.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

¿What does using semantic elements do?

A

Using semantic elements, provides a more terse way to express the same information while also potentially providing more information for screening ready users.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

WHAT ARE ARIA LANDMARKS?

A

ARIA landmarks are attributes you add to elements to create semantically defined sections of a page that allow users of assistive technologies to navigate the page more easily. Think of ARIA landmarks as building a set of “skip to” links like “skip to main content”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly