Is it possible to get cut out text effect like this using CSS/CSS3 only?

前端 未结 7 1867
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-01 08:40

Is it possible to get cut out text effect like this using CSS/CSS3 only? or image is the only option to get this effect.

7条回答
  •  一整个雨季
    2021-02-01 08:49

    What you really need for that particular effect is inset:

        text-shadow: inset #000 0 0 0.10em; /* THIS DOESN'T WORK */
    

    Unfortunately: " is the same as defined for the ‘box-shadow’ property except that the ‘inset’ keyword is not allowed."

提交回复
热议问题