【发布时间】:2021-12-24 01:38:16
【问题描述】:
【问题讨论】:
【问题讨论】:
.box {
background: #363742;
position: relative;
overflow: hidden;
height: 200px;
}
.box:before,
.box:after {
border-radius: 1000px / 50px;
position: absolute;
background: #fff;
height: 80px;
content: '';
right: -50px;
left: -50px;
top: -50px;
}
.box:after {
bottom: -50px;
top: auto;
}
<div class="box"></div>
【讨论】: