Listing 7-32 "CSS für Teil 1 und Teil 2 der Navigationsleiste"

ul, li {
padding: 0;
margin: 0;
list-style: none;
}
#navigation {
width: 13em;
background-color: #DFE1F0;
border-right: 1px solid #000;
}
#navigation ul {
font-size: .9em;
}
#navigation li {
font-weight: bold;
border-bottom: 4px solid #A9B0D7;
}
#navigation a {
display: block;
padding: 6px;
color: #2E3192;
text-decoration: none;
}
#navigation h6 {
position: absolute;
left: -10000px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}

Dieses Beispiel stammt aus dem Buch Barrierefreiheit verstehen und umsetzen.