css|部落格|連結|樣式表 <style type="text/css">
A { text-decoration: NONE; color:#51bfe0}
A:hover {font-weight: bold;color:#990099}
<style>
滑鼠放在連結字型上的時候,連結字型變粗,顏色改變,如本部落格上的樣子。其中color:#990099表示連結字型改變的顏色,可以根據個人愛好修改,其他的不需要改。
<style type="text/css">
a{text-decoration:none; color:#51bfe0}
A:hover{font-size:23; background:#ffd306; color:#990099}
</style>
滑鼠滑鼠放在連結字型上的時候,連結字型大小改變,顏色改變,有背景顏色。font-size:23表示字型大小;background:#ffd306表示背景顏色color:#990099表示字型顏色,可以根據個人愛好修改,其他的不需要改。
<style type="text/css">
a:link{text-decoration:none}
a:hover{text-decoration:none}
a:visited{text-decoration:none}
</style>
去掉連結字型的底線。
<STYLE TYPE="text/css">
A { text-decoration: NONE; color: #51bfe0}
A:hover {border-bottom:1px dashed #51bfe0 }
<style type="text/css">
滑鼠放在連結字型上的時候,連結字型加虛線。
<style type="text/css">
A { text-decoration: NONE; color: #51bfe0}
A:hover { position: relative; left:10px; top:10px; }
</STYLE>
滑鼠放在連結字型上的時候,連結字型會移動,其left:10px表示字型向上移動的距離,top:10px表示字型向上移動的距離,可以根據個人愛好修改具體數值,其他的不需要改。
<style type="text/css">
a { text-decoration: none; padding-bottom: 4px; white-space: nowrap; }
a:hover { background: url(背景圖片地址) repeat-x 100% 100%; }
</style>
滑鼠放上在連結字型上的時候,連結字型出現圖片背景。
<style type="text/css">
a{ text-decoration: none; white-space: nowrap; padding-bottom: 10px; }
a:hover { background: url('http://blog.sina.com.cn/pic/4723cdbf020002nm') repeat-x 100% 100%; }
</style>
滑鼠放在連結字型上的時候,出現花朵底線的效果。
<style type="text/css">
a { text-decoration: none; white-space: nowrap; padding-bottom: 5px; }
a:hover { background: url('http://blog.sina.com.cn/pic/4723cdbf020002nn') repeat-x 100% 100%; }
</style>
滑鼠放在連結字型上的時候,出現捲動箭號底線的效果。
注意:有些代碼應該甚用,如果用不好反而會適得其反,影響頁面美觀效果!這些代碼用的時候添加空白面板就行了。還有就是這些都是CSS代碼,不能放在完全沒有東西的空白面板裡,可以把它放到已有內容的面板中。