Сергій mk Asked:2020-08-05 17:20:54 +0800 CST2020-08-05 17:20:54 +0800 CST 2020-08-05 17:20:54 +0800 CST 如何在 CSS 中绘制平滑曲线? 772 人们可以在 CSS 上绘制带有红色边框的元素吗? html 1 个回答 Voted Best Answer Arthur 2020-08-05T18:19:53+08:002020-08-05T18:19:53+08:00 不是最好的选择CSS: PS我 建议使用SVG :root { --size: 16.875rem; } .block { position: relative; width: var(--size); height: var(--size); background-color: lightgray; border-radius: 1rem 1rem 0 0; } .block::before, .block::after { content: ''; position: absolute; bottom: -1rem; width: 5.2rem; height: 1.5rem; background-color: inherit; z-index: -1; } .block::before { left: 0; border-radius: 0 0 100% 0; } .block::after { right: 0; border-radius: 0 0 0 100%; } .ellipse { position: absolute; bottom: -3rem; left: 50%; width: 8em; height: 4rem; border-radius: 50%; background-color: white; transform: translateX(-50%); } <div class="block"> <div class="ellipse"></div> </div>
不是最好的选择
CSS
:PS我 建议使用
SVG