在head下加入css控制超链接的一些属性:


  1.     
  2. "Content-Type" content="text/html; charset=utf-8" />   
  3. test  
  4. "text/css">  
  5.    a:link {  
  6.    color: #000000;  
  7.    text-decoration: none;  
  8.    }  
  9.    a:visited {  
  10.    text-decoration: none;  
  11.    color: #000000;  
  12.    }  
  13.    a:hover {  
  14.    text-decoration: underline;  
  15.    color: #FF0000;  
  16.    }  
  17.    a:active {  
  18.    text-decoration: none;  
  19.    color: #FF0000;  
  20.    }  
  21.  
  22.