CSS超链接标签a
# a标签的各种情况
/*去除a标签下划线*/
a {
text_decoration: none;
}
/*去除未被访问的a标签的下划线*/
a:link {
text_decoration: none;
}
/*去除已经被访问过的a标签的下划线*/
a:visited {
text_decoration: none;
}
/*去除鼠标悬停时的a标签的下划线*/
a:hover {
text_decoration: none;
}
/*去除正在点击的a标签的下划线(鼠标按下,尚未松开)*/
a:active {
text_decoration: none;
}
/*去除获得焦点的a标签的下划线(被鼠标点击过)*/
a:focus {
text_decoration: none;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
编辑 (opens new window)
上次更新: 2023/09/17, 23:41:49