Forum Moderators: open
title attribute to an appropriate inline element surrounding the text in question. For example, an acronym can be denoted by (guess what!) the acronym element: <p>This page is built with <acronym title="Hypertext Markup Language">HTML</acronym> 4.01.</p> You can also simply use a
span for more general situations. As for browsers, by default Mozilla/Firefox and Opera distinguish acronym with a dotted underline and a cursor change to a question mark. For IE, no visible style is added, so it is best to make an explicit rule in your CSS: acronym {
border-bottom:1px dotted #333;
cursor:help;
}