我试图用CSS重新创建这个图像:
我不需要重复。这是我开始的,但它只是一条直线:
#wave { position: absolute; height: 70px; width: 600px; background: #e0efe3; }
<div id="wave"><div/>
解决方法
我不知道它是你的形状,但它是接近的 – 你可以玩的价值观:
#wave { position: relative; height: 70px; width: 600px; background: #e0efe3; } #wave:before { content: ""; display: block; position: absolute; border-radius: 100% 50%; width: 340px; height: 80px; background-color: white; right: -5px; top: 40px; } #wave:after { content: ""; display: block; position: absolute; border-radius: 100% 50%; width: 300px; height: 70px; background-color: #e0efe3; left: 0; top: 27px; }
<div id="wave"></div>