Create a “inset” effect using CSS in websites

后端 未结 8 959
轮回少年
轮回少年 2020-12-28 10:14

I am very much impressed by the \"inset\" like effect in many latest websites. Some examples are

and

The line in the center. Nowadays, many webs

8条回答
  •  死守一世寂寞
    2020-12-28 10:44

    this is css text shadow property.for get this effect use

    .style{
        text-shadow:0 1px #FFFFFF;
    }
    

    but really this is effect of color combination that you are using in background and text. so you should do.

    1. use text shadow color dark than background color.
    2. use text shadow color light than text color.

提交回复
热议问题