div with triangle at the bottom with background image

后端 未结 3 1792
野趣味
野趣味 2020-12-11 04:02

I want to make a div, with a triangle at the bottom. But I need the background image on the triangle to appear, I\'ve tried us

3条回答
  •  渐次进展
    2020-12-11 04:31

    You can use a clipping mask

    div {
        -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
        clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
    }
    

    Have a look at this website to generate your own masks.

提交回复
热议问题