2015年2月6日 星期五

修改網頁連結顏色

Q: 如何修改有網頁連結文字的顏色?
A: 加入以下語法, 使網頁連結文字為白色#FFF, 無底線(text-decoration: none;), 滑鼠移到上面(hover)時為#189cd2色.

<style type="text/css">
a {
color: #FFF;
text-decoration: none;
}
a:hover {
color: #189cd2;
text-decoration: none;
text-decoration: none;
}
</style>