gpt4 book ai didi

css - 我怎样才能制作CSS曲线?

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

如何制作如下图所示的 css:

enter image description here

最佳答案

可以通过控制边界半径来实现

CSS

.graph {
height: 100px;
width: 200px;
background: transparent;
border-radius: 0px 0px 0px 370px/225px;
border: solid 5px grey;
border-top:none;
border-right:none;
margin:20px;
}

.graph:before {
height:20px;
width: 10px;
border: 5px solid grey;
border-radius: 30px 30px 0px 0px /75px 75px 0px 0px ;
display: block;
content: "";
border-bottom:none;
position:relative;
top: -9px;
left: -12px;
}

HTML

<div class = "graph"><div>

https://jsfiddle.net/u663m81s/

关于css - 我怎样才能制作CSS曲线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30044372/

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