中文字幕在线直播,成人免费图片免费观看,国内精品国语自产拍在线观看,国产欧美精品区一区二区三区

改變文章欄目(目錄)的文字顏色
時間:2007年03月06日 內(nèi)容來源: 互諾科技 瀏覽量:0
找到以下代碼:

 /*=======欄目=======*/

 div#category{

 margin-left:12px;

 margin-right:12px;

 color: #636563;

 height: 30px;

 padding-top:12px;

 margin: 5px;

 }

 然后在其后面加入以下代碼:

 div#category a:link {

 font-family: Arial,Helvetica,sans-serif;

 color: Red;

 text-decoration: none;

 }

 div#category a:visited {

 font-family: Arial,Helvetica,sans-serif;

color: Red;

 text-decoration: none;

 }

 div#category a:hover {

 font-family: Arial,Helvetica,sans-serif;

 color:MediumOrchid;

 text-decoration: none;

 }

 這里大家可以把color:后面的顏色名稱隨便改成自己喜歡的顏色名稱。

 具體說明是:a:link里的color代表文字的初始顏色(訪問前),a:visited里的color代表文字(鏈接)被訪問(即被鼠標(biāo)點擊)后的顏色,a:hover里的color則代表鼠標(biāo)指針指在它上面時的顏色。