Guest_imported
New member
- Jan 1, 1970
- 0
Hi,
I am trying to apply style sheets to a link, like this
<a href=" target="content" class="MyClassFoo">Yahoo!!</a>
and the style sheet class is defined as
.MyClassFoo
{
FONT-WEIGHT: bold;
FONT-SIZE: x-small;
TEXT-TRANSFORM: uppercase;
COLOR: #fdfdfd;
FONT-FAMILY: Arial, helvetica, sans-serif;
TEXT-DECORATION: none
}
However in reality the class is never invoked if the href attribute is included.
If I do this
<a target="content" class="MyClassFoo">Yahoo!!</a>
then the class's style is applied.
Can anyone help? Thanks in advance.
I am trying to apply style sheets to a link, like this
<a href=" target="content" class="MyClassFoo">Yahoo!!</a>
and the style sheet class is defined as
.MyClassFoo
{
FONT-WEIGHT: bold;
FONT-SIZE: x-small;
TEXT-TRANSFORM: uppercase;
COLOR: #fdfdfd;
FONT-FAMILY: Arial, helvetica, sans-serif;
TEXT-DECORATION: none
}
However in reality the class is never invoked if the href attribute is included.
If I do this
<a target="content" class="MyClassFoo">Yahoo!!</a>
then the class's style is applied.
Can anyone help? Thanks in advance.