Com canviar el color de l'enllaç HTML.
El canvi del color de l'enllaç es fa amb l'estil CSS:
<a href="../html-link.htm" style="color:red"/Main page</a/
El codi generarà aquest enllaç:
El canvi de color de fons de l'enllaç es fa amb l'estil CSS:
<a href="../html-link.htm" style="background-color:#ffffa0"/Main page</a/
El codi generarà aquest enllaç:
Codi CSS:
<style/
#link_bar a {
padding:15px; font-weight:bold; float:left; }
#link_bar a:link { color:#d0d0d0;
background-color:#0000a0; }
#link_bar a:visited { color:#c0c0c0;
background-color:#0000a0; }
#link_bar a:hover { color:#ffffff;
background-color:#000060; }
#link_bar a:active { color:#f0f0f0;
background-color:#00ff00; }
</style/
Codi HTML:
<div id="link_bar">
<a
href="html-anchor-link.htm">Anchor link</a>
<a
href="html-link-color.htm">Link color</a>
<a
href="../mailto.htm">Email link</a>
<a
href="html-image-link.htm">Image link</a>
<a
href="html-text-link.htm">Text link</a>
</div>
Veure:
#link_bar a és l'estil de tots els estats de l'enllaç.
#link_bar a: l'enllaç és l'estil d'un enllaç normal.
#link_bar a: Visit és l'estil de l'enllaç visitat.
#link_bar a: hover és l'estil de l'enllaç del ratolí.
#link_bar a: actiu és l'estil d'enllaç quan es prem amb el ratolí.
Advertising