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 与以下:
.hex { position: relative; margin: 1em auto; width: 10em; height: 17.32em; border-radius: 1em/.5em; background: orange; transition: opacity .5s; } .hex:before, .hex:after { position: absolute; width: inherit; height: inherit; border-radius: inherit; background: inherit; content: ''; } .hex:before { -webkit-transform: rotate(60deg); transform: rotate(60deg); } .hex:after { -webkit-transform: rotate(-60deg); transform: rotate(-60deg); }
HTML:
<div>
此方法使用边框半径和变换创建具有弯曲边缘的六边形。
以上是如何创建具有完全弯曲边缘的 CSS 六边形?的详细内容。更多信息请关注PHP中文网其他相关文章!