特殊的选择器

来源:互联网 发布:腾讯数据分析招聘 编辑:程序博客网 时间:2024/06/06 03:15

<HEAD>

<STYLE type="text/css">
 A
 { /*设置超链接不带下划线*/
  color: blue;
  text-decoration: none;  /*文本修饰:无*/
 }  
 A:hover
 {/*鼠标在超链接上方停留时,带下划线 */
  color: red;
  text-decoration:underline; /*文本修饰:下划线*/
  }
</STYLE>
HEAD>
 <BODY>
  <A href=“a.htm" >俺是超链接,移过来我就显示下划线</A>
  </BODY>
</HTML>

 

 

a {
 color: #87A019;
}

a:hover {
 text-decoration: none;
 color: #2582A4;

}

原创粉丝点击