How can I replace text with CSS?

前端 未结 21 2464
暗喜
暗喜 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:05

    This worked for me with inline text. It was tested in Firefox, Safari, Chrome, and Opera.

    Lorem ipsum dolor sit amet, consectetur Some Text adipiscing elit.

    span { visibility: hidden; word-spacing: -999px; letter-spacing: -999px; } span:after { content: "goodbye"; visibility: visible; word-spacing: normal; letter-spacing: normal; }

提交回复
热议问题