源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>编程字典</title> <style> a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: underline; } a:active { text-decoration: underline; } </style> </head> <body> <p><b><a href="default.html" target="_blank">这是一个链接</a></b></p> <p><b>注意:</b> a:hover 必须出现在 a:link 和 a:visited 之后,在CSS样式定义里面.</p> <p><b>注意:</b> a:active 必须出现在 a:hover 之后,在CSS样式定义里面</p> </body> </html>
运行结果