玖玖国产精品视频I黄色一级免费电影I亚洲综合激情小说I日韩欧美电影I久久久国产一区I深爱激情综合网

DW中級篇:超鏈接的下劃線如何去掉

2012/5/30 14:54:08   閱讀:13499    發布者:13499

  實現方法很簡單,在源代碼的和之間加上如下的CSS語法控制:

  <style type="text/css">
   <!--
   a:link { text-decoration: none;color: blue}
   a:active { text-decoration:blink}
   a:hover { text-decoration:underline;color: red} 
   a:visited { text-decoration: none;color: green}
   --> 
   </style>

  其中:

   a:visited 指已經訪問過的鏈接;

  text-decoration是文字修飾效果的意思;

  none參數表示超鏈接文字不顯示下劃線;

  underline參數表示超鏈接的文字有下劃線

  同樣,如果講none替換成overline則給超鏈接文字加上劃線,換成line-through給超鏈接文字加上刪除線,blink則使文字在閃爍?!?/P>

      a:link 指正常的未被訪問過的鏈接;

  a:active 指正在點的鏈接;

  a:hover 指鼠標在鏈接上;