Does :before not work on img elements?

后端 未结 12 2265
眼角桃花
眼角桃花 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:20

    This one works for me:

    html

    • name here

    CSS

    ul li::before {
        content: url(../images/check.png);
    }
    

提交回复
热议问题