Create a “inset” effect using CSS in websites

后端 未结 8 951
轮回少年
轮回少年 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:47

    Simply do the following:

    .hr {
      opacity: 0.2;
      border-top: 1px solid #000;
      border-bottom: 1px solid #fff;
    }
    

    Play with opacity and colors to suit your design, It works on all backgrounds I think ;)

提交回复
热议问题