使得鼠标移至超链接上变色。

@CHARSET "UTF-8";

a{    /* 超链接正常显示黑色 */
	text-decoration:none;
	color:black;
	font-family:微软雅黑;
}
a:hover{/* 超链接在鼠标移入时显示橘黄色 */
	color:#ff8040;
}

如何让超链接移入变色——CSS

相关文章:

  • 2021-08-06
  • 2021-09-26
  • 2022-02-15
  • 2021-08-11
  • 2021-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
猜你喜欢
  • 2021-12-04
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2021-10-13
  • 2021-10-09
相关资源
相似解决方案