Inner text shadow with CSS

后端 未结 22 1348
情深已故
情深已故 2020-11-28 18:07

I am currently playing around with CSS3 and trying to achieve a text effect like this (the black blurry inner shadow):

22条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 18:29

    There's a much simpler way to achieve this

    .inner{color: red; text-shadow: 0 -1px 0 #666;} // #666 is the color of the inner shadow
    

    Voilà

提交回复
热议问题