Transparent text cut out of background

后端 未结 12 834
无人及你
无人及你 2020-11-22 06:05

Is there any way to make a transparent text cut out of a background effect like the one in the following image, with CSS?
It would be sad to lose all pr

12条回答
  •  攒了一身酷
    2020-11-22 06:16

    just put that css

        .banner-sale-1 .title-box .title-overlay {
          font-weight: 900;
          overflow: hidden;
          margin: 0;
          padding-right: 10%;
          padding-left: 10%;
          text-transform: uppercase;
          color: #080404;
          background-color: rgba(255, 255, 255, .85);
    
          /* that css is the main think (mix-blend-mode: lighten;)*/
          mix-blend-mode: lighten;
    
        }
    

提交回复
热议问题