使用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中文網其他相關文章!