开发者

Best Way to do "Skip Navigation" with CSS for 508 Compliancy

开发者 https://www.devze.com 2022-12-25 03:36 出处:网络
There is a requirement in Section 508 to code a \"Skip Navigation\" at the top of all web pages in order to allow the Seeing Impaired to bypass lengthy and repetitive top navigation.

There is a requirement in Section 508 to code a "Skip Navigation" at the top of all web pages in order to allow the Seeing Impaired to bypass lengthy and repetitive top navigation.

Originally, I thought开发者_JS百科 the best way to do this would be to put the words in the page and use CSS "display:none" to not show them. But I have read that you can't do this either.

Does someone know of a best practice to do a "Skip Navigation" hyper link at the top of all pages, but not have it visible on the screen to people with sight or without another disability? Can this be done with CSS without using the "Display:none" comment?


I'm under the impression that when you display:none screen readers may discard that element. I don't follow completely why they do that, but I suppose it's why they're "screen" readers and not "HTML" readers.

I tend to use position:absolute to remove an element which I still want to be visible to a screen reader. Something like...

a#skip_to_content {
    position:absolute;
    top:-10000px;
    left:-10000px;
}

... but I've read nothing to confirm that this is the suggested solution.

If you're trying to develop accessible web sites and want to very quickly test your page, you should check out the Fangs FireFox plugin. It simulates how a popular screen reader, Jaws, would see and organize the information on your site.


Have a look at assets.cms.gov. They have a nice Twitter Bootstrap based framework with 508 compliant jQuery UI controls. The Skip Navigation is also implemented into the framework

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号