在CSS中创建圆角底角

时间:2016-10-26 18:33:23

标签: html css html5 css3 css-shapes

我正在尝试制作一个带有border-radius圆角的CSS形状,但未能理解如何:

.rounded-css {
  border-radius: 5px;
  display: block;
  background: #669999;
  width: 150px;
  height: 200px;
}
<div class="rounded-css"></div>

预期产出:

enter image description here

2 个答案:

答案 0 :(得分:5)

您可以使用border-radius: 0 0 50% 50%;使整个底部圆形。通过添加白色伪元素::after,您可以“剪切”不需要的上部以仅显示曲线:

.rounded {
  border-radius: 0 0 50% 50%;
  display: block;
  background: #669999;
  width: 100%;
  height: 70px;
  margin-top: -35px;
}
.rounded::after {
  content: "";
  display: block;
  width: inherit;
  height: 35px;
  background: white;
}
<div class="rounded"></div>

答案 1 :(得分:4)

我认为你可以将它改编成你想要放入的容器。我认为它几乎就是你要找的东西。

&#13;
&#13;
.rounded-css {
  border-radius: 100%;
  display: block;
  background: black;
  border-bottom: 40px #669999 solid;
  border-top: 40px transparent solid;
  position: relative;
  top: -60px;
  overflow: hidden;
}
&#13;
<div class="rounded-css"></div>
&#13;
&#13;
&#13;