Hyperlink Underlines are now Borders (24th October 2007)

Underlines in hyperlinks cut off the descenders from the letters. Using border-bottom instead means you still get a line under the text but the descenders are free from obstruction.

That’s what I am now doing for the main content column:

/* - Links */
#content a {
 text-decoration: none;
 border-bottom: 1px solid;
}
#content a code {
 color: inherit;
 background: transparent;
}

This was another example of simple syntax highlighting.