当前位置:  开发笔记 > 前端 > 正文

CSS边框底部的曲线

如何解决《CSS边框底部的曲线》经验,为你挑选了1个好方法。

我需要CSS中的这张图片,并且在此边框内需要背景图片。

我试过了

border-radius:0 0 50% 50%;
-webkit-border-radius:0 0 50% 50%;

但没有得到所需的形状。

任何帮助,将不胜感激。



1> Harry..:

使用边界半径:

您可以在X和Y轴上为元素指定不同的边框半径值,以获得带有边框和背景图像的弯曲底面。

.curved-border {
  height: 200px;
  width: 400px;
  background: url(http://lorempixel.com/400/200/nature/1);
  border: 3px solid;
  box-shadow: inset 0px -1px 0px black; /* just to make the bottom border look thicker */
  margin-bottom: 4px;
}
.sample1 {
  border-radius: 0% 0% 150% 150%/0% 0% 40% 40%;
}
.sample2 {
  border-radius: 0% 0% 100% 100%/0% 0% 30% 30%;
}
推荐阅读
coco2冰冰
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有