日期:2014-05-17  浏览次数:20536 次

HTML 超链接 a标记 样式
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
<!--
A.mytest:link {
 FONT-SIZE: 12px; COLOR: #5b5b5b; TEXT-DECORATION: none
}
A.mytest:visited {
 FONT-SIZE: 12px; COLOR: #969696; TEXT-DECORATION: none
}
A.mytest:active {
 FONT-SIZE: 12px; COLOR: #0099ff; TEXT-DECORATION: none
}
A.mytest:hover {
 FONT-SIZE: 12px; COLOR: #ff6102; TEXT-DECORATION: none
}
--></style>
<title>Insert title here</title>
</head>
<body>
<A href="#" class="mytest">test</A>
</body>
</html>