a標籤 CSS樣式 滑鼠懸停、點選、點選後、選定
阿新 • • 發佈:2019-01-01
<head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <style type="text/css"> a:link { color: #06F; text-decoration: none; }/* 未訪問的連結 */ a:visited { color: #999; text-decoration: line-through; } /* 已訪問的連結 */ a:hover { color: #F00; text-decoration: underline; }/* 滑鼠移動到連結上
/* 未訪問的連結 */ 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="10.html">這裡也是連結</a></p> </body>滑鼠移動到連結上 */ a:active { color: #F0F; } /* 選定的連結 */ </style> </head> <body> <p><a href="#">這裡是連結</a></p> <p><a href="#">這裡也是連結</a></p> </body>