CSS a 标签样式

CSS a 标签样式

a:LINK {
    color: red;
}
a:VISITED {
    color: yellow;
}
a:HOVER {
    color: green;
}
a:ACTIVE {
    color: blue;
}
原文地址:https://www.cnblogs.com/cb168/p/5016171.html