CSS Frequently Asked Questions
Design:
|
|
Q. |
I know how to |
A. |
You will want to <HTML> <STYLE TYPE="TEXT/CSS"> <BODY BGCOLOR="#FFFFFF"> <DIV class="test">Test</DIV> </BODY> |
Hyperlinks:
|
|
Q. |
Is it possible to have 2 |
A. |
Yes, it is possible to do this a.nav:visited {color: red;} Basically this ensures that the anchors with the nav class that are visited If you have many links in your content section, make life easier for a.nav:visited {color: red;} This way ALL your links’ color will be green EXCEPT for those who are tagged
|