Posted on 2008-12-12 21:52
☆ 阅读(186)
评论(0) 编辑 收藏 所属分类:
CSS样式表
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>css9.html</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
a:link {font-size: 10pt; color:red; text-decoration: none}
a:visited{font-size: 10pt; color:green; text-decoration: none}
a:hover{font-size: 15pt; color:brown; text-decoration: underline}
</style>
</head>
<body>
<a href="#">有关Ajax的最新动态</a>
</body>
</html>