css- length of border bottom

前端 未结 4 1572
无人及你
无人及你 2021-01-26 11:27

I have a link that\'s styled with

a:hover {
    border-bottom: 3px solid #fff;
}

And looks like this:

But I need to resize the

4条回答
  •  暖寄归人
    2021-01-26 12:01

    It is better to use text-decoration in your situation Like this

    .underLineText:hover{
         text-decoration:underline
    }
    

    And HTML like this

    Contact Us

提交回复
热议问题