HTML-koppelingskleur

De kleur van de HTML-link wijzigen.

Link tekstkleur

Het wijzigen van de linkkleur doe je met css-styling:

<a href="../html-link.htm" style="color:red"/Main page</a/

De code genereert deze link:

Hoofdpagina

Link achtergrondkleur

Het wijzigen van de achtergrondkleur van de link wordt gedaan met css-styling:

<a href="../html-link.htm" style="background-color:#ffffa0"/Main page</a/

De code genereert deze link:

Hoofdpagina

Div koppelt kleur

CSS-code:

<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/

HTML code:

<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>

Visie:

 

 

 

#link_bar a is de stijl voor alle staten van de link.

#link_bar a: link is de stijl van een gewone link.

#link_bar a: bezocht is de stijl van de bezochte link.

#link_bar a: hover is de stijl van de muisaanwijzer.

#link_bar a: active is de stijl van de link wanneer deze met de muis wordt ingedrukt.

 


Zie ook

Advertising

HTML-LINKS
SNELLE TABELLEN