CSS a 标签样式

a:LINK {
    color: red;
}
a:VISITED {
    color: yellow;
}
a:HOVER {
    color: green;
}
a:ACTIVE {
    color: blue;
}