箭头与不完整的边框

时间:2016-02-08 13:24:06

标签: html css svg css-shapes

Arrow with incomplete border

如何在白色div的左侧制作此箭头。 这是我尝试过的CSS,但只有一个颜色边框。

.white-box{
        padding: 20px;
    background: #fff;
  }
  .white-box:after,white-box:before{
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  .white-box:after {
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #88b7d5;
    border-width: 30px;
    margin-top: -30px;
}
.white-box:before {
    border-color: rgba(194, 225, 245, 0);
    border-right-color: #c2e1f5;
    border-width: 36px;
    margin-top: -36px;
}

1 个答案:

答案 0 :(得分:4)

使用inline svgpath element非常简单:

svg{
  width:30%; height:auto;
  display:block;
}
<svg viewbox="1 0 5 10">
  <path d="M5 3 V1 L2 5 L5 9 V7" stroke="grey" stroke-width="0.5" fill="#fff"/>
</svg>