-
-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make UI usable by blind people #306
Comments
This section of the CSS Writing Modes spec has some fairly complex tables, btw, you could probably just steal the markup structure: https://www.w3.org/TR/css-writing-modes-4/#unicode-bidi |
This issue is the main reason why I keep looking for alternatives, and cannot wholeheartedly recommend Rally. |
This is a major issue for me as well |
I have a limited set of tools to validate screen reader readiness. So this might be a 'dumb question'. |
Describe the bug
One of the participants uses a screen reader and found the poll too difficult to use.
Expected behavior
Usable with a screenreader. :)
Steps to Reproduce
OK, this isn't how to actually reproduce, but it should give you an idea:
In general, if you replace all images with their alt text and show the page without CSS, it should be well-organized and readable. If it's not, it means you need to fix your markup. Yours... definitely needs fixing.
How to Improve
<p>
and<table>
and<h3>
and<section>
and<pre>
to organize the information. Find a nice, basic introductory book or read the HTML4 spec or something. Definitely the main section of the poll should be using table markup. Here's a few relevant tutorials from MDN: structuring text, lists, page structure, tables.<img>
tags, and usealt
attributes to either mark the image as decorative (alt=""
) or give the text that it represents (e.g.alt="If need be"
,alt="Total Available: "
).There might be other things to fix as well, but this should get you 90% of the way there.
The text was updated successfully, but these errors were encountered: