Listing 7-42 "Gestaltung der Trefferliste mit CSS"

* {
font-family: verdana;
}
.unsichtbar {
position: absolute;
left: -10000px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
ul li {
float: left;
list-style-type: none;
}
ul li.aktuell {
background-color: #dddddd;
}
ul li.aktuell,
ul li a {
text-decoration: none;
display: block;
padding: 0.2em 0.4em;
border: 1px solid #aaaaaa;
margin-right: 0.8em;
}

Dieses Beispiel stammt aus dem Buch Barrierefreiheit verstehen und umsetzen.