HTML鼠标移到a上面让a变色

来源:互联网 发布:女生做春梦 知乎 编辑:程序博客网 时间:2024/06/03 14:36

原文地址:https://zhidao.baidu.com/question/1542589583532638987.html

为A标签添加样式,参考如下:

1
2
3
4
<style>
a { color:red; transition:0.5s; }
a:hover { color:blue; }
</style>

 transition是CSS3的一个属性,指示当标签的状态变化时,过渡的时间,0.5s 表示过渡(渐变)时间为 0.5 秒,此时间可自行设置。


阅读全文
0 0