gpt4 book ai didi

html - 我怎样才能用 css 和 html 做这种曲折

转载 作者:搜寻专家 更新时间:2023-10-31 22:27:00 25 4
gpt4 key购买 nike

当我尝试获得这种锯齿形时遇到问题我尝试了很多但不幸的是它没有用。

我试过这种编码方式

CSS

.zigzag:before {
content: "";
display: block;
position: absolute;
top: -10px;
width: 100%;
height: 10px;
}
.container2:before {
background:
linear-gradient(
45deg, transparent 33.333%,
#E2E2E2 33.333%, #E2E2E2 66.667%,
transparent 66.667%
),
linear-gradient(
-45deg, transparent 33.333%,
#E2E2E2 33.333%, #E2E2E2 66.667%,
transparent 66.667%
);
background-size: 20px 40px;
}

但我得到的是锯齿形矩形,但我需要的是线而不是矩形

我想要这样 i need like this

最佳答案

div{
height: 50px;
background:
linear-gradient(135deg, white 35%, transparent 25%) -25px 0,
linear-gradient(225deg, white 35%, transparent 25%) -25px 0,
linear-gradient(315deg, white 35%, transparent 25%),
linear-gradient(45deg, white 35%, transparent 25%);
background-size: 50px 50px;
background-color: black;
}

http://jsfiddle.net/4ay1uduz/

只需将所有 50px 更改为元素的高度,并将所有 25px 更改为其高度的一半。

关于html - 我怎样才能用 css 和 html 做这种曲折,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34130383/

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