リンクにテキスト装飾を使用する...LOGIN

リンクにテキスト装飾を使用する方法

分析例:

text-decoration 属性は、主にリンク内の下線を削除するために使用されます。

text-decoration:none; を使用して、リンクから下線を削除します。

text-decoration:underline; を使用して、リンクに下線を追加します。

次のセクション
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</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="#">This is a link</a></b></p> <p><b>注意:</b> hover必须在:link和 a:visited之后定义才有效.</p> <p><b>注意:</b>active必须在hover之后定义是有效的.</p> </body> </html>
コースウェア