【问题标题】:How to make a link bold and underlined on hover?如何在悬停时使链接加粗并加下划线?
【发布时间】:2014-01-23 02:13:40
【问题描述】:

对于我的菜单,我想让链接在移动时加粗并加下划线。

我刚刚发现了如何改变颜色以及如何使它变大。

加粗加下划线的语法是什么?

【问题讨论】:

    标签: html css hover


    【解决方案1】:

    您需要使用:hover 选择器

    a:hover {
        font-weight: bold;
        text-decoration: underline;
    }
    

    【讨论】:

    • 回答了我的问题。谢谢!
    【解决方案2】:

    a 上定位hover 状态,或者如果您想定位特定链接,请添加class

    a:hover{
       font-weight: bold;
       text-decoration: underline;
    }
    

    【讨论】:

      【解决方案3】:

      此代码出现在所有链接中

      a:hover {
      font-weight: bold;
      text-decoration: underline;
      }
      

      如果你只想要菜单,就用这个

      #menu li a:hover  {
      font-weight: bold;
      text-decoration: underline;
      }
      

      【讨论】:

        猜你喜欢
        • 2014-08-30
        • 1970-01-01
        • 2013-04-15
        • 1970-01-01
        • 2013-03-07
        • 2014-04-12
        • 2017-12-23
        • 2013-05-09
        • 1970-01-01
        相关资源
        最近更新 更多