#1 2007-07-11 04:32:37

cyrus
Member
RankingRanking
Registered: 2006-07-19
Posts: 30
Reputation :  [+ 1/ -0 ]
Expertise

CSS Tips - different coloured links

Colour the links in the correct order as below (
Always specify in the order Link, Visited, Hover Active).

Code::

<style type="text/css" media="screen">
a:link {
color: #0000FF;
background-color: #00FFFF;
}
a:visited {
color: #990000;
background-color: #33FFFF;
}
a:hover {
color: #FF0000;
background-color: #00FFFF;
}
a:active {
color: #990000;
background-color: #00FFFF;
}
</style>

Offline

 

Board footer

OPML feedsRSS feeds



Powered by WWWThreads Forum
© Copyright 2006, WWWThreads