中华泰山号图片欣赏:请问a:link中的a是什么意思?

来源:百度文库 编辑:高校问答 时间:2024/05/05 07:02:08
a:link {
color: #ffffff;
text-decoration: none;
}
a:visited {
color: #E4E1E1;
text-decoration: none;
}
a:hover {
color: #FF8603;
text-decoration: none;

这是定义超连接的样式. 超连接不是 <a> 吗?
a:link, a:visited, a:hover分别定义了未点击过的超连接, 已访问过的超连接, 及鼠标经过超连接时的样式.