I have tried creating multiple containers, then rotating them from 360 to 270, to make them go around the page, but it has not worked.
CSS:
.zigzag-section:after{
content:'';
position:absolute;
width:100%;
height:40px;
top:100vh;
display:block;
background:linear-gradient(-45deg, transparent 33.33%,
#00e676 33.33%,#00e676 66.66%,
transparent 66.66%
), linear-gradient(45deg, transparent 33.33%,
#00e676 33.33%,#00e676 66.66%,
transparent 66.66%
);
background-size: 30px 90px;
transform:rotate(360deg);
}
.zigag-section:after{
content:'';
position:absolute;
width:100%;
height:40px;
top:100vh;
display:block;
background:linear-gradient(-45deg, transparent 33.33%,
#00e676 33.33%,#00e676 66.66%,
transparent 66.66%
), linear-gradient(45deg, transparent 33.33%,
#00e676 33.33%,#00e676 66.66%,
transparent 66.66%
);
background-size: 30px 90px;
transform:rotate(360deg);
.content{
width:45%;
height:20vh;
position:relative;
top:50%;left:50%;
transform:translate(-50%,-50%);
}
HTML:
<div class = "zigag-section">
</div>
<div class = "zigzag-section">
</div>
I only created 2 zigzag-sections because the second one (zigag) wouldn't go to the left fully, and when I extended the width, the section wouldn't move with the browser when resizing.
Well, if you are trying to put it like a background, you need to put your content inside the div that will have the zigzag. Or, in the case of this example, the background:
So that you can set on the zig-zag class the background desired:
Hope this is the solution that you're looking for. Bellow is the snippet