实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css text-decoration 实例 - 自学教程(runoops.com)</title> <style> a:link { text-decoration: none; } /* unvisited link */ a:visited { text-decoration: none; } /* visited link */ a:hover { text-decoration: underline; } /* mouse over link */ a:active { text-decoration: underline; } /* selected link */ </style> </head> <body> <p><b><a href="//runoops.com/css-link.html" target="_blank">This is a link</a></b></p> <p><b>注意:</b> hover必须在:link和 a:visited之后定义才有效.</p> <p><b>注意:</b>active必须在hover之后定义是有效的.</p> </body> </html>
运行结果: