我正在使用矩形JS的Web应用程序,我只有初学者的HTML和CSS知识。所以你能建议我实现像下面这样的东西与响应UI,包含按钮,文本和图像。我怎么写CSS样式曲线的div和放置另一个下面没有任何空白空间。
有人能提出任何解决方案吗?任何帮助都将不胜感激。我已经尝试了径向梯度法,如下所示。
<div className="background1">
....
</div>
<div className="background2">
.....
</div>
.background1 {
width: 100%;
background: radial-gradient(120% 800px at 50% -30px, red 75%,
transparent 75%) no-repeat;
z-index: 2;
position:relative;
margin-bottom: 0px;
}
.background2 {
background-color: #202492;
width: 100%;
background: radial-gradient(120% 800px at 50% -30px,blue 75%,
transparent 75%) no-repeat;
position: relative;
z-index: 1;
margin-top: -50px;
}
但我得到了这个
块引号
2条答案
按热度按时间ht4b089n1#
我觉得你需要这样的东西:
只需更改
border-radius
和padding
值,即可获得您想要的完美曲线。ivqmmu1c2#
可以使用border-bottom-left-radius和border-bottom-l-right-radius或border-radius:0像素0像素3像素3像素;