Hi,
I have the following CSS style
.SuperText {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8px;
color: #000000;
font-weight: normal;
position:relative; top:-4px;
text-decoration: none;
}
What this does is take text and superscript it - for example "TM" as in Trademark and the (R) in Registration.
Here's the problem. Suppose I do the following:
<a href=" XP <span class=supertext>TM</span></a>, then the underline that's normally done in my <a href> will be broken because I have a text-decoration: none in my supertext class.
I've also tried keeping the text-decoration as underline and not having it at all, but then my "TM" is underlined directly underneath, and is not consistent with the underlining for the rest of the link, which looks weird.
What can I do?
Any help is appreciated.
Thanks,
mickeyj2
I have the following CSS style
.SuperText {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8px;
color: #000000;
font-weight: normal;
position:relative; top:-4px;
text-decoration: none;
}
What this does is take text and superscript it - for example "TM" as in Trademark and the (R) in Registration.
Here's the problem. Suppose I do the following:
<a href=" XP <span class=supertext>TM</span></a>, then the underline that's normally done in my <a href> will be broken because I have a text-decoration: none in my supertext class.
I've also tried keeping the text-decoration as underline and not having it at all, but then my "TM" is underlined directly underneath, and is not consistent with the underlining for the rest of the link, which looks weird.
What can I do?
Any help is appreciated.
Thanks,
mickeyj2