How to increase width of underline for the multiline text when on hover

后端 未结 6 1688
梦如初夏
梦如初夏 2020-12-11 03:41

Fellow brothers in code,

I am trying to achieve custom text-decoration: underline; effect for the multiline text between

tags. Si

6条回答
  •  不知归路
    2020-12-11 04:21

    You can use box-shadow for your case like this:

    .custom-underline {
        font-size:200%;
        font-weight:bold;
        margin: 0;
        display: inline-block;
    }
    .custom-underline:hover {
        box-shadow: inset 0 -15px 0 violet, inset 0 -3px 0 black
    }

    Let the paint work


    Share it with a friend


    Just float around and be there

提交回复
热议问题