Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
CSS - customizing the anchor tag
Message
 
À
03/05/2001 17:08:59
Information générale
Forum:
Internet
Catégorie:
HTML
Divers
Thread ID:
00503235
Message ID:
00503264
Vues:
16
>>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform