嗨,我想在我的 div 上产生这样的效果,但只在顶部:
我知道有 css 掩码属性,但对我来说真的很复杂。
我的解决方案是我创建了单个圆形 svg 并重复多次,但我也需要左/右空间。
.container {
margin: 20px 0;
height: 400px;
background: lightgray;
position: relative;
}
.svg {
background: url('../../assets/circle-gapped.svg');
height: 100%;
background-repeat: repeat-x;
position: absolute;
left: 0;
right: 0;
top: -30px;
}
<div class="container">
<div class="svg" />
</div>