Hi, ich will den link in h3
[CODE]
xyz
[/CODE]
in einer anderen farbe wie die links in h2 die ich per index.css festgelegt hab. Das stylesheet sieht so aus:
[CODE]body {
text-align:center;
}
h1 {
color:#FFFFFF;
font-size:18pt;
font-family:arial;
background-color:#000000;
}
p {
color:#040040;
font-size:18pt;
font-family:arial;
}
h2 {
font-size:18pt;
font-family:arial;
background-color:#040040;
}
b {
color:#040040;
font-size:20pt;
font-family:arial;
}
h3 {
font-size:18pt;
font-family:arial;
}
a:link { color: #D3D3D3; }
a:visited { color: #009933; }
a:active { color: #D3D3D3; }
[/CODE]
ganz unten habe ich die farbe der links festgelegt, wie kann ich diese „a:“ nun trennen und h1, h2, h3… verschiedene farben geben?