如何为CSS八边形形状提供完整的边框?

时间:2016-01-06 19:52:15

标签: html css css3 css-shapes

我正试图把这个css Octagon带给它一个坚实的红色边框。但是,当我添加边框时,它只适用于形状的一部分。有人有解决方案吗?

enter image description here

这是JS FIDDLE

HTML

<div class='octagonWrap'>
      <div class='octagon'></div>
  </div>

CSS

.octagonWrap{
        width:200px;
        height:200px;
        float: left;
        position: relative;
        }
    .octagon{
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        overflow: hidden;
        }
    .octagon:before {
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        transform: rotate(45deg);
        background: #777;
        content: '';
        border: 3px solid red;
        }

6 个答案:

答案 0 :(得分:7)

您可以修改自己的代码以使用它。目前,您有.octagon的{​​{1}}规则和.octagon-wrapper的{​​{1}}规则。.octagon::before的规则应该适用于.octagon。只需转换CSS规则并将其应用于其父级,同时将border的{​​{1}}属性更改为继承自.octagon::before

.octagon
.octagonWrap {
    width:200px;
    height:200px;
    float: left;
    position: relative;
    overflow: hidden;
}
.octagon {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    overflow: hidden;
    transform: rotate(45deg);
    background: #777;
    border: 3px solid red;
}
.octagon:before {
    position: absolute;
    /* There needs to be a negative value here to cancel
     * out the width of the border. It's currently -3px,
     * but if the border were 5px, then it'd be -5px.
     */
    top: -3px; right: -3px; bottom: -3px; left: -3px;
    transform: rotate(45deg);
    content: '';
    border: inherit;
}

答案 1 :(得分:4)

SVG解决方案

我不知道使用svg是否是一个选项,
如果它在这里是多么简单。

&#13;
&#13;
<svg viewBox="0 0 75 75" width="200px">
  <path d="m5,22 18,-18 28,0 18,18 0,28 -18,18, -28,0 -18,-18z" stroke="red" stroke-width="2" fill="black" />
</svg>
&#13;
&#13;
&#13;

答案 2 :(得分:3)

您可以使用online calculator(或手动计算)来计算侧面与整体高度所需的比例。

然后通过使用一些伪和span元素,您可以通过以下方式创建此形状:

.oct {
  height: 241px;
  width: 100px;
  background: none;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 10px solid tomato;
  border-bottom: 10px solid tomato;
  margin: 100px auto;
  transition: all 0.8s;
}
.oct:before,
.oct:after,
.oct span {
  content: "";
  position: absolute;
  height: inherit;
  width: inherit;
  background: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  border: inherit;
  top: -10px;
  z-index:-1;
}
.oct:before {
  left: -100%;
  transform: rotate(-45deg);
  transform-origin: top right;
}
.oct:after {
  left: 100%;
  transform: rotate(45deg);
  transform-origin: top left;
}
.oct span {
  height: inherit;
  width: inherit;
  background: inherit;
  transform: rotate(90deg);
}
.oct:hover {
  transform: rotate(180deg);
}
<div class="oct">
  <span></span>
</div>

答案 3 :(得分:2)

想象一下这些红线延伸直到它们相互接触。那个正方形(旋转45%)有一个完整的边框,你只是看不到溢出的“切断”角落:隐藏;

这似乎有效(但是通过添加两个额外的div来实现,所以可能有更好的方法):

<div class='octagonWrap'>
  <div class='octagon'></div>
  <div class='vert'> </div>
  <div class='hort'> </div>
</div>

然后添加tihs css:

.vert {
     position: absolute;
     left: 60px;
     border-top: 3px solid red;
     border-bottom: 3px solid red;
     height: 194px;
     width: 80px;
 }
 .hort {
     position: absolute;
     top: 60px;
     border-left: 3px solid red;
     border-right: 3px solid red;
     width: 94px;
     height: 80px;
 }

答案 4 :(得分:1)

您应该尝试使用HTML5 canvas元素。您应该能够draw the polygon,然后为其添加笔画。

答案 5 :(得分:1)

使用firefox.exe -p myprofile -no-remote

可以非常有效地做到这一点

myprofile
clip-path