圆形边长方形

时间:2015-01-10 10:21:07

标签: html css css3 svg css-shapes

如何使用CSS / SVG /等对圆形corenrs编码这些矩形。图片:

enter image description here

我尝试使用border-radius对此进行编码,但边框半径水平或垂直边是直的。

我如何编码圆角矩形的下脊?

1 个答案:

答案 0 :(得分:2)

使用svg的贝塞尔曲线。

enter image description here



.container {
  position: relative;
  width: 400px;
  margin: 0 auto;
}
.shape {
  position: absolute;
  z-index: -1;
}
.content {
  position: relative;
  width: 400px;
  padding: 4em 3em;
  box-sizing: border-box;
  color: #FFEFE3;
  font-size: 13.1px;
}

<div class="container">
  <svg class="shape" width="400" height="100%" viewBox="-1 -1 401 158" preserveAspectRatio="none">
    <path fill="#FFAC61" d="M0 75 c1 -30 4 -60 30 -65 q200 -20 343 0 c20 6 24 40 25 65 c0 25 -6 57 -27 65 c-90 17 -210 6 -240 7 c-10 -1 -20 0 -40 8 c-7 0 -10 -1 -15 -8 c-4 -4 -20 -6 -50 -7 c-30 -10 -23 -57 -27.5 -73" />
  </svg>
  <div class="content">The English Wikipedia is the English-language edition of the free online encyclopedia Wikipedia.</div>
</div>
&#13;
&#13;
&#13;