国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

如何在鏈接上使用文本裝飾

實(shí)例解析:

text-decoration屬性主要用于刪除鏈接中的下劃線(xiàn)。

使用text-decoration:none;刪除鏈接中的下劃線(xiàn)。

使用text-decoration:underline;為鏈接中添加下劃線(xiàn)。

繼續(xù)學(xué)習(xí)
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(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>
提交重置代碼