很初级的字体问题,请帮忙。比较急
各位,如何让我的网站字体链接:不加下划线,并且鼠标经过时是其他颜色。我试了很多种方法,很初级的问题。
多谢大家了,在线等待。
问题点数:0、回复次数:2Top
1 楼leesan(F无名雨)回复于 2003-09-02 14:02:26 得分 0
用样式来控制Top
2 楼jzsh2000(瘦猫)回复于 2003-09-02 14:08:49 得分 0
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
a:link {
color:#000000;
text-decoration: none;
}
a:visited {
color:#000000;
text-decoration: none;
}
a:active {
color:#000000;
}
a:hover {
color:#FF0000;
}
</style>
</head>
<body>
<a href="#">链接字体不加下划线,链结是黑色,鼠标经过后就成红色</a>
</body>
</html>
Top




