Creating a Tab shape with CSS or SVG

后端 未结 5 1179
逝去的感伤
逝去的感伤 2020-12-12 07:13

Does anyone have an idea how to make this tab like shape :

\"enter

5条回答
  •  执笔经年
    2020-12-12 07:54

    div {
        background:brown;
        width:500px;
        height:100px;
        position:relative;
    }
    div:after {
        content:'';
        position:absolute;
        background:white;
        border:40px solid;
        border-bottom:0;
        border-color:white white brown brown;
        top:0;
        right:0;
        width:30%;
    }

提交回复
热议问题