gpt4 book ai didi

css - 如何设计具有椭圆圆边的矩形 div?

转载 作者:行者123 更新时间:2023-11-28 18:01:46 28 4
gpt4 key购买 nike

如何设计带有椭圆圆边的矩形 div?

Rectangle with elliptical rounded sides

最佳答案

设置border-radius为50%即可得到椭圆。

你可以得到两个元素,一个在另一个里面,大小不同,这样就得到了所需的 2 个椭圆

.test {
position: absolute;
left: 40px;
top: 40px;
width: 200px;
height: 200px;
border-radius: 50%;
overflow: hidden;
}


.test:after {
content: "";
position: absolute;
left: -30%;
top: 10%;
width: 160%;
height: 80%;
background-color: lightblue;
border-radius: 50%;

}

在这种情况下,使用伪元素,因此只需要一个 div

demo

关于css - 如何设计具有椭圆圆边的矩形 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20308987/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com