.content_01 {
font-size: 12px;
font-style: normal;
line-height: 18px;
font-weight: normal;
font-variant: normal;
text-transform: none;
color: #BCBEC0;
}
.content_01 a:link {color: #0081F9; text-decoration: none;}
.content_01 a:visited {color: #FF0000; text-decoration: none; }
.content_01 a:hover {color: #FFD200; text-decoration: none; }
.content_01 a:active {color: #04AE00 ; text-decoration: none; }
這段css裡有四個與超連結相關的指令
a:link
a:visited
a:hover
a:active
各代表什麼呢?
2007-01-27 18:07:11 · 1 個解答 · 發問者 Justin 2 in 電腦與網際網路 ➔ 程式設計
a:link:設定連結(正常情況之下)的樣式。
a:visited:設定拜訪過的連結樣式。(也就是點選過的連結)
a:active:設定正在作連結動作時候的樣式。(也就是當你滑鼠按下連結的那時刻)
a:hover:設定當滑鼠移到連結上面時候的連結樣式!
2007-01-27 18:25:41 · answer #1 · answered by 兔子毛 3 · 0⤊ 0⤋