Home  >  Q&A  >  body text

请问怎么改变超链接字体的颜色?

静待花开静待花开2780 days ago2093

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 01:10:58

    How to change the font color of hyperlinks? -PHP Chinese website Q&A-How to change the font color of hyperlinks? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 怪我咯

    怪我咯2017-03-29 17:50:44

    a:link{color:#000;}

    a:hover{color:#000;}

    a:active{color:#000;}

    a:visited{color:#000;}

    1、a:link
    设置a对象在未被访问前(未点击过和鼠标未经过)的样式表属性。也就是html a锚文本标签的内容初始样式。

    2、a:hover
    设置对象在其鼠标悬停时的样式表属性,也就是鼠标刚刚经过a标签并停留在A链接上时样式。

    3、a:active
    设置A对象在被用户激活(在鼠标点击与释放之间发生的事件)时的样式表属性。也就是鼠标左键点击html A链接对象与释放鼠标右键之间很短暂的样式效果。

    4、a:visited
    设置a对象在其链接地址已被访问过时的样式表属性。也就是html a超链接文本被点击访问过后的CSS样式效果。


    reply
    0
  • Cancelreply