Re: CSS Pseudo Classes
slyboy69er
If you need to create two sets, ideally, either name the divs, tables,
whatever and put the parameters in there:
#xxx a {
xxx
}
or create classes
.pinklink a {
xxxx
}
.bluelink a {
xxxx
}
If you want the background to change color on link, hover, etc. you need this
within the curly brackets:
{
background-color: #xxxxxx;
display: block;
}
Then the background color will change on the rollover (once you change the
colour under the a:hover attribute... etc., etc.
Cheers
JJ
|