gpt4 book ai didi

html - CSS3 中的复合形状

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

我需要在 CSS 中创建以下形状:shape我在网上找到了不同的形状,但是都是箭头,六边形等等;对我的身材没什么帮助。

最佳答案

按照这些思路,可以根据需要随意调整值。使用 ::before 伪元素可以创建添加的露头部分,而无需第二个单独的 HTML 元素。

div {
width: 400px;
height: 200px;
background: orange;
position: relative;
margin-top: 40px;
}
div::before {
content: '';
position: absolute;
display: block;
height: 20px;
width: 60px;
bottom: 100%;
left: 50%;
transform: translate(-50%,0);
background: orange;
border-radius: 10px 10px 0 0;
}
<div></div>

关于html - CSS3 中的复合形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51313965/

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