Click to See Complete Forum and Search --> : differnt link colors for photo and text
DanielLee
12-28-2002, 03:27 AM
Hi,
I want to have different colors for photo links and text links on the same page, is this possible?
I am using HTML 4.01 Transitional.
Any assistance appreciated. Thank you in advance.
Daniel
Stefan
12-28-2002, 07:12 AM
With CSS you can have as many unique colors on as many links as you want.
Eg
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<style title="Default" media="screen" type="text/css">
a.one:link {color:blue;}
a.two:link {color:red;}
a.three:link {color:#ccc}
</style>
</head>
<body>
<p><a class="one" href="">link</a></p>
<p><a class="two" href="">link</a></p>
<p><a class="three" href="">link</a></p>
</body>
</html>