What is web accessibility? | Email: web axe [at gmail] NOSPAM! dot com
Tuesday, March 07, 2006
The aspects of the cognitive portion of web accessibility. Topics include use of language, consistency in layout, and clearly defined links.Labels: accessibility, cognitive, podcast, web, webaim
web design | create a website | Website Templates | UK Web Hosting | Search Engine Optimization | search engine optimisation | web hosting | Cheap Domain Names
Add yourself to the Web Accessibility Enthusiasts mapper
Dennis Lembree is the founder of web development company Web Overhauls, which specializes in web usability, standards, and accessibility. Follow Dennis on Twitter: @dennisl
Ross Johnson runs a web design company (3.7 Designs) that takes a wholistic view on the web and art of constructing pages. They strive to be creative and unique. Follow Ross on Twitter: @3pointross
2 Comments:
To add more "air" in your links, allowing users to click easier, in CSS, use padding.
Also, when using links in lists (for navigation), you could use "width: 100%" trick, that provides the same reaction like using LABEL tags with form fields.
Here's the CSS code for the menu of one of my web sites. I think the "display: block;" is the code that makes the text function more like a button.
#menu ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#menu ul li{
margin: 0;
padding: 0;
float: left;
}
#menu a {
display: block;
padding: .3em .6em;
font-weight: bold;
text-decoration: none;
border-right: 1px solid #888;
}
#menu a:hover, #menu a:focus {
background-color: #eee;
color: inherit;
}
Post a Comment
<< Home