Links


"Skip to" Code

<!-- XHTML code -->
...	
<body> 
<ul class="offset">
 <li><a href="#content">Jump to Content</a></li>
 <li><a href="#nav">Jump to Navigation</a></li>
 <li><a href="#footer">Jump to Footer</a></li>
</ul>
...
<!-- CSS code -->
ul.offset, .offset {
 position : absolute;
 top : -9000px;
 left : -9000px;
 z-index : 9;
}

ul.offset a:focus, ul.offset a:active {
 position : absolute;
 top : 9010px;
 left : 9010px;
 background : #1E6083; 
 color : #fff;
 padding : 5px;
 font-weight : bold;
 border : 2px solid #000;
 width : 6em;
 z-index : 9;
}