CodeLab
Show Output
 
xxxxxxxxxx
18
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>Remove Default Underline from Links using CSS</title>
6
<style>            
7
    a:link, a:visited {
8
        text-decoration: none;
9
    }
10
    a:hover, a:active {
11
        text-decoration: underline;
12
    }
13
</style>
14
</head>
15
<body>
16
    <p><a href="#">Place mouse pointer over me</a></p>
17
</body>
18
</html>                            
 

在微博、微信、公众号、小程序分享此示例。 如果您觉得有帮助,请给我们一个赞。