Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
CSS - customizing the anchor tag
Message
 
To
03/05/2001 17:08:59
General information
Forum:
Internet
Category:
HTML
Miscellaneous
Thread ID:
00503235
Message ID:
00503264
Views:
15
>>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>
>
If a whole section of the page needs a certain look you could use < div class="section1"> and then have an a style for that section.
eg
 Ideas {bgcolor: yellow}
 Ideas a {text-decoration: none; visited: orange; active: blue;hover: black;}
everything within the div will have the ideas style. Check my syntax but the idea is sound.
Sarah
Sarah King
pcpropertymanager.com
Previous
Reply
Map
View

Click here to load this message in the networking platform