怎么用css写一个底部弧度的效果

图片描述

如图示,底部的弧度效果除了用背景图外,还有其他什么方法吗,用border-radius写了下效果不佳

阅读 17.6k
6 个回答
<style type="text/css">
.box {
  position: relative;
  width: 100%;
  height: 200px;
  text-align: center;
  color: #fff;
  background-color: #27ae60;
}
.box:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  z-index: -1;
  content: ' ';
  height: 200px;
  width: 100%;
  border-radius: 0 0 50% 50%;
  background-color: #27ae60;
}
</style>
<div class='box'>hello world</div>

做个大尺寸的圆形div,根据弧的宽高计算出圆直径,圆心位置和div的位置,隐藏多余的部分。定位好后作为背景,覆盖个填充内容的透明层。

用border-radius 是可以的,只要定义好div的中心位置以及直径。

既然上面都说border-radius,那我给个其他的思路,用SVG。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题