x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
a:link,
7
a:visited {
8
display: block;
9
font-weight: bold;
10
color: #FFFFFF;
11
background-color: #98bf21;
12
width: 120px;
13
text-align: center;
14
padding: 4px;
15
text-decoration: none;
16
}
17
18
a:hover,
19
a:active {
20
background-color: #7A991A;
21
}
22
</style>
23
</head>
24
25
<body>
26
<a href="/css/" target="_blank">这是一个链接</a>
27
</body>
28
</html>