css- length of border bottom

前端 未结 4 1559
无人及你
无人及你 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 11:55

    This is how I would do it:

    a:hover:after {
        content: ' ';
        text-decoration: none;
        position: absolute;
        width: 50%;
        height: 100%;
        left: 0;
        margin-left: 25%;
        border-bottom: solid 3px black;
    }
    

    Here is the JSFiddle demo

提交回复
热议问题