Thick underline behind text

前端 未结 4 1304
离开以前
离开以前 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:44

    Try using background-position:

    HTML:

    ABC

    CSS:

    p>span {
        background-image: url(http://i234.photobucket.com/albums/ee79/xxjetaimmexx/pink.jpg);
        background-position: bottom;
        background-repeat: no-repeat;
    }
    .a {
        background-size:100% 33%
    }
    .b {
        background-size:100% 50%
    }
    .c {
        background-size:100% 70%
    }
    

    Demo : http://jsfiddle.net/lotusgodkk/GCu2D/355/

    Key is to alter the background-size of each span.

提交回复
热议问题