我想在CSS中创建一个如下所示的形状。正如你所知道的那样,只需简单地应用圆角就可以进行一些调整......
可以吗?
答案 0 :(得分:19)
这是jsfiddle:http://jsfiddle.net/swqZL/
带有“figure”类的元素div的CSS:
.figure {
height: 400px;
width: 200px;
background-color: black;
border-bottom-left-radius: 100%30px;
border-bottom-right-radius: 100%30px;
}
水平半径100%,垂直半径30px
答案 1 :(得分:5)
<div style="background: black;
width: 300px;
height: 450px;
padding-top: 50px;">
<div style="width: 200px;
height: 400px;
background: white;
margin: 0 auto;
border-radius: 0 0 100px 100px / 0 0 25px 25px;
-moz-border-radius: 0 0 100px 100px / 0 0 25px 25px;
-webkit-border-radius: 0 0 100px 100px / 0 0 25px 25px;
">
</div>
</div>
有关选择性椭圆边界半径的信息,请点击此处:http://www.sitepoint.com/setting-css3-border-radius-with-slash-syntax/
答案 2 :(得分:2)
工作片段:
.border-radius-example {
width: 125px;
height: 175px;
background: #000;
margin: 20px;
float: left;
padding: 5px;
}
#border-radius-bottom {
-moz-border-radius-bottomleft: 100%35px;
-webkit-border-bottom-left-radius: 100%35px;
border-bottom-left-radius: 100%35px;
-moz-border-radius-bottomright: 100%35px;
-webkit-border-bottom-right-radius: 100%35px;
border-bottom-right-radius: 100%35px;
}
&#13;
<div class='border-radius-example' id='border-radius-bottom'>
</div>
&#13;
答案 3 :(得分:0)
添加到以前的回答:
这可能会增加一些动态价值
/****/
border-top-right-radius: 25%40%;
border-top-left-radius: 25%40%;
border-bottom-left-radius:25%40%;
border-bottom-right-radius: 25%40%;
/****/