How can I replace text with CSS?

前端 未结 21 2177
暗喜
暗喜 2020-11-22 06:17

How can I replace text with CSS using a method like this:

.pvw-title img[src*=\"IKON.img\"] { visibility:hidden; }

Instead of ( img

21条回答
  •  情歌与酒
    2020-11-22 07:00

    Unlike what I see in every single other answer, you don't need to use pseudo elements in order to replace the content of a tag with an image

    Facts
    div.pvw-title { /* No :after or :before required */ content: url("your URL here"); }

提交回复
热议问题