CSS a 标签样式

a:LINK {
color: red;
}
a:VISITED {
color: yellow;
}
a:HOVER {
color: green;
}
a:ACTIVE {
color: blue;
}
05-11 11:37