我试图在css中创建这些图像角/边但没有结果:
如何在CSS中实现这一点?
这是我的尝试,但我无法达到图像中的确切形状。
div {
background-color: black;
width: 500px;
height: 50px;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
}

<div></div>
&#13;
答案 0 :(得分:0)
overflow: hidden;
在容器div中创建3个div
border-radius: 50%; z-index: 2; box-shadow: 0 0 10px black;
position: relative;
并重新定位它们。 left: [X]px, top: -[Y]px, float: left and float: right
。使用动态测量进行尺寸调整和定位,因此您的布局会起作用: ex:all基于 vw < / EM>
这是一个小例子。 https://jsfiddle.net/warkentien2/mx11fh6b/2/如果你只是遵循这些步骤,那就更简单了。
答案 1 :(得分:0)
这是一个简化版本。
div{
background-color:black;
width:500px;
height:50px;
border-radius: 50%/0 0 50px 50px;
}
答案 2 :(得分:0)
感谢@ warkentien2这个小提琴的解决方案
https://jsfiddle.net/npqgjfbL/10/
.container {
overflow: hidden;
}
.green {
background-color: green;
min-height: 150px;
border-radius: 50%/0% 0 100px 100px;
z-index: 2;
box-shadow: 0 0 10px black;
}
.rectangle {
position: relative;
top: -100px;
width: 50%;
height: 300px;
z-index: -99999;
}
.left {
float: left;
}
.black {
background-color: black;
}
.grey {
background-color: grey;
}
.right {
float: right;
}
&#13;
<div class="container">
<div class="green"> </div>
<div class="rectangle black left"> </div>
<div class="rectangle grey right"> </div>
</div>
&#13;
谢谢大家的帮助!