答案 0 :(得分:1)
您需要使用::after
和::before
来查看此链接:https://css-tricks.com/the-shapes-of-css/
制作像这样的形状并将它们放在您的背景图片上。
正如我在您的图像上发现的那样,您的标签是白色的,因此当您将形状的颜色涂成白色时,它们将是不可见的,并且您也可以做角落或其他操作。
答案 1 :(得分:-1)
我认为您可以使用border-radius
绘制清晰的边框。
#sharp-img {
border-radius: 0% 0% 31% 33% / 0% 0% 16% 17%;
}
<img id="sharp-img" src="https://images.unsplash.com/photo-1593642532400-2682810df593?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80" width="500" alt="technology" />
在Fancy Border Radius Generator上可以看到更多的图像。