Does :before not work on img elements?

后端 未结 12 2392
眼角桃花
眼角桃花 2020-11-22 01:46

I\'m trying to use the :before selector to place an image over another image, but I\'m finding that it simply doesn\'t work to place an image before an im

12条回答
  •  深忆病人
    2020-11-22 02:39

    Try this code

    .button:after {
        content: ""
        position: absolute
        width: 70px
        background-image: url('../../images/frontapp/mid-icon.svg')
        display: inline-block
        background-size: contain
        background-repeat: no-repeat
        right: 0
        bottom: 0
    }
    

提交回复
热议问题