1个回答
test
2024-06-23
如果要 纯CSS 可以改 border-radius
实现一个类似的,但一般绘图还是建议直接用 canvas
或者 svg
<!DOCTYPE html>
<html>
<head>
<style>
.water-drop {
width: 100px;
height: 260px;
background-color: #3498db;
border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
}
</style>
</head>
<body>
<div class="water-drop"></div>
</body>
</html>
回复
适合作为回答的
- 经过验证的有效解决办法
- 自己的经验指引,对解决问题有帮助
- 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
- 询问内容细节或回复楼层
- 与题目无关的内容
- “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容