Thick underline behind text

前端 未结 4 1309
离开以前
离开以前 2020-12-07 04:14

How to reproduce this sort of underline behind the text ABC using spans and css?

\"thick

4条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-07 04:56

    Another possibility:

    p {
        font-size: 100px;
        font-family: arial;
    }
    
    span {
        padding: 0 10px;
        box-shadow: inset 0 -40px 0 0 magenta;
    }
    
    span:nth-child(2) {
        box-shadow: inset 0 -55px 0 0 magenta;
    }
    
    span:nth-child(3) {
        box-shadow: inset 0 -70px 0 0 magenta;
    }

    ABC

提交回复
热议问题