I'm using yaml builder to create a 3-column CSS layout. In the HTML it generates, there is one section that does not make any sense to me:
<!-- start: skip link navigation -->
<a class="skip" title="skip link" href="#navigation">Skip
to the navigation</a><span class="hideme">.</span>
<a class="skip" title="skip link" href="#content">Skip
to the content</a><span class="hideme">.</span>
<!-- end: skip link navigation -->
Class hideme looks like this:
.hideme {
position: absolute;
left: -1000em; /* LTR */
top: -1000em;
}
Apparently, removing it has no effect in browsers I tried, but I'm afraid it might come back to bite me later. Any ideas what's this for?