/* 未访问的链接 */
a:visited { color: #999; text-decoration: line-through; } /* 已访问的链接 */
a:hover { color: #F00; text-decoration: underline; }/* 鼠标移动到链接上 */
a:active { color: #F0F; } /* 选定的链接 */
</style>
</head>
<body>
<p><a href="#">这里是链接</a></p>
<p><a href="#">这里也是链接</a></p>
</body>