How can i underline a letter?

We must underline the letter that is associated with its shortcut key. We don´t know how can do that. It is necessary, for the users can work with the aplications without mouse.

Re: How can i underline a letter?

Hi,

The HTML <u> element is not part of HTML Strict, and does not exist anymore entirely in XHTML 1.1. It was taken out because it is stylistic markup and does not convey semantics. Our XHTML binding only supports the Strict part of HTML, so that is why you can’t use that element.

The preferred solution is to use e.g. <span class="accesskey">x</span>, and then using CSS to style that:

.accesskey {
   text-decoration: underline;
   font-weight: bold;
}

Hope that helps,

~Grauw