CSS 連結設定

標籤語法
超連結除了可以用前面所介紹的語法設定外,也可以套用這些特效。
text-decoration
(底線的樣式)
text-decoration:underline(加底線)、none(不加底線)、overline(包含上下線)。
cursor
(滑鼠指標的樣式)
cursor:auto(自動)、crosshair(十字)、default(箭頭)、hand(手型)、move(移動)、text(文字)、wait(等待)、help(幫助)。
a:link
(超連結的樣式)
a:link {cursor:help;text-decoration:underline}
a:visited
(瀏覽過後超連結的樣式)
a:visited {cursor:help;text-decoration:underline}
a:hover
(滑鼠移至上方時超連結的樣式)
a:hover {cursor:help;text-decoration:underline}
a:active
(設定點下超連結時的樣式)
a:active {cursor:help;text-decoration:underline}

網頁研習室製作