wcag

How can I clear the Warnings sections of the error list In VS2008?

早过忘川 提交于 2019-12-09 14:48:08
问题 Specifically, once I get the WCAG Anaylsis warnings for a website into my warnings window I can't get rid of them, until I close down studio. When building another project in the same solution they stay there. Anyone got any ideas? 回答1: I came across this question yesterday looking for an easy answer. While closing the solution works for me, and then rebuilding only the solution I want to see warnings on, I found that doing a "Clean Solution" (right-click solution, select "Clean Solution")

How to write good alt text for images to help screen reader and blind user to understand what is picture about?

最后都变了- 提交于 2019-12-05 20:54:13
问题 How to write good alt text for images to help screen reader and blind user to understand what is picture about ? and if we are using Alt text then what should be in a Title="text" if we are using both in special cases like menu images etc 回答1: You should not make the visually impaired user understand what the image is all about. For the blind, the image effectively doesn't exist , all that there is is the text. The alt text should work as a single sentence/paragraph that can be replaced for

How can I clear the Warnings sections of the error list In VS2008?

我怕爱的太早我们不能终老 提交于 2019-12-04 02:09:15
Specifically, once I get the WCAG Anaylsis warnings for a website into my warnings window I can't get rid of them, until I close down studio. When building another project in the same solution they stay there. Anyone got any ideas? I came across this question yesterday looking for an easy answer. While closing the solution works for me, and then rebuilding only the solution I want to see warnings on, I found that doing a "Clean Solution" (right-click solution, select "Clean Solution") will clear the Error List pane (including warnings). Unload/Reload project I regularly get stubborn errors

Combining a table and hierarchical list in HTML

◇◆丶佛笑我妖孽 提交于 2019-12-03 15:08:35
问题 I'm working to redesign a legacy toolset and I'm looking at how to better display some information both presentationally and semantically. The data hierarchically in nature but has properties that need to be readily visible to users. The desired layout is similar to below. Seq Item Name Min Max - Anything under here isn't shown 1 Identifier 1 1 (Required) 2 Name 1 1 2.1 First Name 1 1 2.2 Middle Name - - (Optional but unlimted) 2.3 Last Name 1 1 3 Age - 1 (Optional) At the moment this is one

What would be the best method to code heading/title for <ul> or <ol>, Like we have <caption> in <table>?

佐手、 提交于 2019-12-03 07:21:04
问题 What would be the best method to code heading/title of <ul> or <ol> ? Like we have <caption> in <table> , and we don't want to make them bold. Is this okay? <p>heading</p> <ul> <li>list item</li> <li>list item</li> <li>list item</li> </ul> Or should headings always be used? <h3|4|5|6>heading</h3|4|5|6> <ul> <li>list item</li> <li>list item</li> <li>list item</li> </ul> 回答1: Always use heading tags for headings. The clue is in the name :) If you don’t want them to be bold, change their style

What would be the best method to code heading/title for <ul> or <ol>, Like we have <caption> in <table>?

蹲街弑〆低调 提交于 2019-12-02 19:56:18
What would be the best method to code heading/title of <ul> or <ol> ? Like we have <caption> in <table> , and we don't want to make them bold. Is this okay? <p>heading</p> <ul> <li>list item</li> <li>list item</li> <li>list item</li> </ul> Or should headings always be used? <h3|4|5|6>heading</h3|4|5|6> <ul> <li>list item</li> <li>list item</li> <li>list item</li> </ul> Always use heading tags for headings. The clue is in the name :) If you don’t want them to be bold, change their style with CSS. For example: HTML: <h3 class="list-heading">heading</h3> <ul> <li>list item </li> <li>list item <

What is the limit of character to use in alt=“text” according to WCAG 2.0?

旧城冷巷雨未停 提交于 2019-12-01 15:30:45
What is the limit of character to use in alt="text" according to WCAG 2.0? there is no limit explicitly set, but conventionally they are limited to 1024 chars. I believe that I have heard that the search engines will go no further than about 200 characters. What is the use case? There is a longdesc attribute that may be of interest... http://www.w3.org/TR/REC-html40/struct/objects.html#adef-longdesc-IMG WCAG says: Sometimes images are worth a thousand words. Maps, Graphs and Charts are examples of images that contain information necessary to understanding the message of a page but too complex

Does compliance to WCAG 2.0 AA prevent the use of JavaScript?

谁都会走 提交于 2019-11-30 18:22:07
Does compliance to WCAG 2.0 AA prevent the use of JavaScript? My understanding based on Understanding Conformance is that we can still use JavaScript as long as we don't generate any content that is noncompliant and that we explicitly state we support JavaScript. Is that correct? The short answer is, no, it doesn't. Your understanding is pretty much correct. Clayton A slightly longer answer is that pages can require JavaScript (AKA ECMAScript), but it's better if they don't. Use JavaScript sparingly and carefully. There's a set of guidelines for using JavaScript on WCAG 2.0 compliant pages .

Why WCAG made 3 level “A”, “AA” and “AAA”?

徘徊边缘 提交于 2019-11-30 11:37:50
问题 What is the purpose of making 3 priority level by WCAG? is it like? If client not paying extra or if we don't have much time then go for A If client paying then or if we have time to make site compatible go for at least AA If client paying and needed according to govt. rules then go for AAA If we are making site then which level we should we try to achieve, or we should do only on client request? Although i found these definitions on this site but these are confusing for me • Priority 1: For

Does compliance to WCAG 2.0 AA prevent the use of JavaScript?

梦想与她 提交于 2019-11-30 01:36:40
问题 Does compliance to WCAG 2.0 AA prevent the use of JavaScript? My understanding based on Understanding Conformance is that we can still use JavaScript as long as we don't generate any content that is noncompliant and that we explicitly state we support JavaScript. Is that correct? 回答1: The short answer is, no, it doesn't. Your understanding is pretty much correct. 回答2: A slightly longer answer is that pages can require JavaScript (AKA ECMAScript), but it's better if they don't. Use JavaScript