How can I replace text with CSS?

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

    Or maybe you could wrap 'Facts' round a as follows:

    Facts

    Then use:

    .pvw-title span {
      display: none;
    }
    .pvw-title:after {
      content: 'whatever it is you want to add';
    }
    

提交回复
热议问题