- From: Vicente Luque Centeno <vlc@it.uc3m.es>
- Date: Sun, 4 Jul 2004 23:44:36 +0200 (CEST)
- To: public-comments-wcag20@w3.org, w3c-wai-gl@w3.org
Hi, In http://www.w3.org/TR/WCAG10-HTML-TECHS/#group-bypass , map element was used as an example of bypassing links (next example is scratcted from there): <BODY> <MAP title="Navigation Bar"> <P> [<A href="#how">Bypass navigation bar</A>] [<A href="home.html">Home</A>] [<A href="search.html">Search</A>] [<A href="new.html">New and highlighted</A>] [<A href="sitemap.html">Site map</A>] </P> </MAP> <H1><A name="how">How to use our site</A></H1> <!-- content of page --> </BODY> However, map element is not be the only alternative (map is deprecated in XHTML Basic 1.0). Should I use a div element instead? Is there any W3C recommended way to acomplish this? Can I do my own? What about these other (which is XHTML Basic 1.0 compliant?) <body> <div title="Navigation Bar"> <span class="skip"> [<a href="#how">Bypass navigation bar</a>] </span> [<a href="home.html">Home</a>] [<a href="search.html">Search</a>] [<a href="new.html">New and highlighted</a>] [<a href="sitemap.html">Site map</a>] </div> <h1><a id="how">How to use our site</a></h1> <!-- content of page --> </body> and the following CSS rule: .skip {display:none} /* for not no be shown in graphical browsers */ Suggestions? Thanks. Vicente Luque Centeno Dep. Ingeniería Telemática Universidad Carlos III de Madrid http://www.it.uc3m.es/vlc
Received on Sunday, 4 July 2004 17:58:46 UTC