首页 > web前端 > css教程 > 如何创建具有完全弯曲边缘的 CSS 六边形?

如何创建具有完全弯曲边缘的 CSS 六边形?

Susan Sarandon
发布: 2024-12-02 01:44:15
原创
880 人浏览过

How to Create a CSS Hexagon with Fully Curved Edges?

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板