使用 CSS 弯曲六边形的边缘
提供的 CSS 代码成功创建了四个边为圆角的六边形,但是,顶部和底部边缘保持平坦。要实现完全弯曲的六边形,需要进行调整。
原始CSS:
#hexagon-circle { width: 100px; height: 55px; background: red; position: relative; border-radius: 10px; } #hexagon-circle:before { content: ""; position: absolute; top: -25px; left: 0; width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 29px solid red; border-radius: 10px; } #hexagon-circle:after { content: ""; position: absolute; bottom: -25px; left: 0; width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-top: 29px solid red; border-radius: 10px; }
解决方案:
到弯曲六边形的顶部和底部边缘,可以使用以下CSS添加:
.curved-hexagon { position: relative; width: 100px; height: 55px; background: red; border-radius: 10px 10px 0 0 / 10px 10px 29px 29px; } .curved-hexagon:before, .curved-hexagon:after { position: absolute; width: inherit; height: inherit; border-radius: inherit; background: inherit; content: ''; } .curved-hexagon:before { -webkit-transform: rotate(60deg); transform: rotate(60deg); } .curved-hexagon:after { -webkit-transform: rotate(-60deg); transform: rotate(-60deg); }
在此修改后的 CSS 中:
这将导致所有边缘都是弯曲的六边形,包括顶部和底部边缘。
以上是如何使用 CSS 创建完全弯曲的六边形?的详细内容。更多信息请关注PHP中文网其他相关文章!