PDA

Volledige versie bekijken : CSS Hyperlink kleuren


philips
%Europe/Berlin %841 %2005, 21:11
Hallo,

Ik werk op een pagina met css en dat gaat uiteraard goed, de hyperlink kleuren worden netjes weergegeven maar nu zit ik met een probleem.

Kan ik ook in een document 2 css styles opnemen met meerder hyperlink kleuren.
Werk met kleurvlakken en kan niet hyperlinks weergeven in het wit op een lichte achtergrond


Wie weet of dit kan

Thanxxxx alvast

Laiverd
%Europe/Berlin %844 %2005, 21:15
Had even de moeite genomen om te zoeken ;)
http://www.google.nl/search?hl=nl&q=%2Bcss+%2Blink+styles&spell=1
http://www.echoecho.com/csslinks.htm

John

josko
%Europe/Berlin %911 %2005, 22:51
<style>
.een {
color:black;
}
.twee{
color:green;
}
</style>

<a href="" class="een"> deze is zwart</a>
<a href="" class="twee">deze groen</a>

Quevi
%Europe/Berlin %912 %2005, 22:53
In de <head>

<style>
a.one:link
{ color:#FFFFFF;
text-decoration: none;
}
a.one:visited
{ color:#FFFFFF;
text-decoration: none;
}
a.one:hover
{ color: #FFFFFF;
text-decoration: underline;
}
a.two:link
{ color:#FFFFFF;
text-decoration: none;
}
a.two:visited
{ color:#FFFFFF;
text-decoration: none;
}
a.two:hover
{ color: #000000;
text-decoration: none;
}
a.three:link
{ color:#FF6400;
text-decoration: none;
}
a.three:visited
{ color:#FF6400;
text-decoration: none;
}
a.three:hover
{ color: #FF6400;
text-decoration: none;
}
</style>

In de <body>
<a href="pagina.htm" class="one">Link</a>

josko
%Europe/Berlin %915 %2005, 22:57
flauw he die classes die iedereen post. zie ook macromedia dreamweaver: maakt het voor je aan...