DEV Community

Cover image for Explained: Creating a zigzag pattern with just CSS
Charanjit Chana
Charanjit Chana

Posted on • Updated on • Originally published at 1thingaweek.com

Explained: Creating a zigzag pattern with just CSS

This is the first in a series of articles where I'll look at creating CSS patterns work and explain how it's achieved. First up is the zig-zag pattern, this is what we'll be creating:

Zigzag pattern created with just CSS

Using CSS' linear-gradient function to create triangles you can build up the pattern bit by bit. Let's break the pattern down so we can see the triangles we need to create:

Grid explaining the zigzag pattern's triangle components

Each part of the pattern is split into 4 squares and there are two triangles in each. Each of these squares is mirrored and repeated to create the zigzag. So we need to create 4 patterns that are repeated. Let's create the first one:

First triangle to create the zigzag pattern

background: linear-gradient(-135deg, teal 25%, transparent 25%) -50px 0;
Enter fullscreen mode Exit fullscreen mode

This creates a diagonal pattern that is teal 25% of the way down, then transparent for the remainder. It's also been rotated and set to be offset vertically by -50px. Next, we'll create a mirror of this pattern that gives us the top two squares of the pattern.

Two triangles that make up half of the zigzag pattern

background: linear-gradient(135deg, teal 25%, transparent 25%) -50px 0,
Enter fullscreen mode Exit fullscreen mode

linear-gradient(-135deg, teal 25%, transparent 25%) -50px 0;
You can set multiple linear gradients, just comma separate the definitions. This is exactly the same as the previous triangle, just rotated in the opposite direction. So now we're defining two linear gradients that go in two different directions and when they repeat we end up with row after row of larger downward facing triangles.

Three triangles that make up three quarters of the zigzag pattern

background: linear-gradient(135deg, teal 25%, transparent 25%) -50px 0,
    linear-gradient(-135deg, teal 25%, transparent 25%) -50px 0,
    linear-gradient(45deg, teal 25%, transparent 25%);
Enter fullscreen mode Exit fullscreen mode

In the rows between the downward facing arrow we now have our third triangle. This doesn't require any positioning, just rotating. So now we need to be mirror this triangle too to give us the complete pattern and we can do that by redefining the gradient from the last step, but rotating it in the opposite direction:

Zigzag pattern created with just CSS

.zigzag {
    background: linear-gradient(135deg, teal 25%, transparent 25%) -50px 0,
        linear-gradient(-135deg, teal 25%, transparent 25%) -50px 0,
        linear-gradient(45deg, teal 25%, transparent 25%),
        linear-gradient(-45deg, teal 25%, transparent 25%);
    background-size: 100px 100px;
}
Enter fullscreen mode Exit fullscreen mode

This is the code you'll need to recreate the pattern. To make the pattern larger, change the -positioning of the first two linear-gradients to half of whatever you choose as the background-size and you now have a repeatable pattern created with just CSS!

Multi-coloured zigzag pattern created with just CSS

And go wild with the colours, try to fit more colours in and see what you can create.

Latest comments (0)