gpt4 book ai didi

html - 使用css的曲线框

转载 作者:太空狗 更新时间:2023-10-29 15:07:12 26 4
gpt4 key购买 nike

我试过像下图这样设计,还是没有得到结果,请帮助我。任何帮助将不胜感激

Desired image effect

<!DOCTYPE html>
<html>
<head>
<style>
#rcorners1 {
border-radius: 10px 90px 90px 10px / 8% 100% 100% 8%;
background: #18b1a0;
padding: 20px;
width: 200px;
height: 150px;
}
</style>
</head>
<body>
<p id="rcorners1">Rounded corners!</p>
</body>
</html>

最佳答案

使用 @Krusader 的评论,你可以添加 position: relative;到#rcorners1。然后使用以下 CSS 添加一个伪元素 (::after):

#rcorners1::after {
content: "";
position: absolute;
top: 10%;
left: -15px;
width: 30px;
height: 80%;
background-color: green;
border-radius: 100%;
}

所以完整的 CSS 应该是这样的:

#rcorners1 {
position: relative;
background: #18b1a0;
padding: 20px;
width: 200px;
height: 150px;
border-radius: 10px 90px 90px 10px / 8% 100% 100% 8%;
overflow: hidden;
}
#rcorners1::after {
content: "";
position: absolute;
top: 10%;
left: -15px;
width: 30px;
height: 80%;
background-color: green;
border-radius: 100%;
}

希望这对您有所帮助。

关于html - 使用css的曲线框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46785196/

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