Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
CSS - customizing the anchor tag
Message
From
03/05/2001 17:08:59
 
 
To
03/05/2001 16:37:46
Jerry Tovar
Dana Corporation Dana It
Maumee, Ohio, United States
General information
Forum:
Internet
Category:
HTML
Miscellaneous
Thread ID:
00503235
Message ID:
00503247
Views:
18
>I am trying to customize certain anchor tags on a web page to look a certain way. But, I also want the other anchor tags to use the default look and feel.
>
>I know I can create a .CSS and link that to my web page, but then all the hyperlinks will look the same. I only want specfic tags to inherit these properties.
>
>I tried the following, but the tag doesn't take the desired properties. However the text-decoration property does work.
>
>< A style="text-decoration: none; visited: orange; active: blue; hover: black" HREF="mypage.htm">Dog
>
>What would the syntax be?

Try by adding a class in your stylesheet or by having it cascaded such as:
.CustomAnchor
{
   text-decoration: none;
   visited: orange;
   active: blue;
   hover: black;
}
Then, reference it like:
< A CLASS=CustomAnchor HREF="mypage.htm">Dog </A>
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform