gpt4 book ai didi

css - 用 CSS flex 矩形的长度?

转载 作者:技术小花猫 更新时间:2023-10-29 11:25:00 25 4
gpt4 key购买 nike

是否可以使用 CSS 制作此形状?它不能用边界半径来完成,还有另一种方法可以“flex ”矩形的边吗?

enter image description here

最佳答案

与其他答案一样,使形状完美的最佳方法是使用 SVG。然而,在 css3 和伪元素的帮助下,你可能会有接近的形状。

这个远非我做的好 FIDDLE 作为一个快速的例子,但随着时间的推移你可能会得到更好的结果:

div {
position: relative;
width: 200px;
height: 150px;
margin: 20px 0;
background: green;
border-radius: 50% / 10%;
color: white;
text-align: center;
text-indent: .1em;
}
div:before {
content: '';
position: absolute;
top: 10%;
bottom: 10%;
right: -5%;
left: -5%;
background: inherit;
border-radius: 5% / 50%;
}
div:after {
content: '';
position: absolute;
bottom: 0px;
right: -11px;
width: 130px;
height: 120px;
background: green;
border-radius: 20% / 150%;
}

关于css - 用 CSS flex 矩形的长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29397326/

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