我需要CSS中的这张图片,并且在此边框内需要背景图片。
我试过了
border-radius:0 0 50% 50%; -webkit-border-radius:0 0 50% 50%;
但没有得到所需的形状。
任何帮助,将不胜感激。
使用边界半径:
您可以在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%;
}