gpt4 book ai didi

html - 我想使用 css3 创建之字形垂直波

转载 作者:行者123 更新时间:2023-11-28 11:02:42 25 4
gpt4 key购买 nike

zigzag pic

这是我想要使用 css3 实现的图像,而不是任何其他库或 js。

最佳答案

使用 2 个使用 linear-gradient 的背景创建背景,并使用 margin:0 auto; 将其放置在中间

body {
margin: 0;
}

.container {
background: #F7F2E2;
position: fixed;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}

.zigzag {
margin: 0 auto;
background: #F7F2E2;
position: relative;
height: 100%;
width: 16px;
z-index: 1;
}

.zigzag:before,
.zigzag:after {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
}

.zigzag:before {
width: 16px;
height: 100%;
left: calc(50% - 8px);
background: linear-gradient(-45deg, #F7A9B9 8px, transparent 0) 0 8px, linear-gradient(225deg, #F7A9B9 8px, transparent 0) 0 8px;
background-position: top left;
background-repeat: repeat-y;
background-size: 16px 16px;
}

.zigzag:after {
width: 16px;
height: 100%;
left: calc(50% - 7px);
background: linear-gradient(-45deg, #F7F2E2 8px, transparent 0) 0 8px, linear-gradient(225deg, #F7F2E2 8px, transparent 0) 0 8px;
background-position: top left;
background-repeat: repeat-y;
background-size: 16px 16px;
}
<div class="container">
<div class="zigzag"></div>
</div>

关于html - 我想使用 css3 创建之字形垂直波,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46369886/

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