DEV Community

Cover image for Creating Patterns with CSS simplified.
Akshaya Venkatesh
Akshaya Venkatesh

Posted on

Creating Patterns with CSS simplified.

Did you know you can create really cool patterns using just the CSS background properties? This blog will get you started on how to approach patterns with CSS and you'll be able to create this πŸ‘‡ simple bookmark pattern at the end of this article.
A pattern that looks like a cut ribbon
Before we begin, let's understand why its worth knowing how to create patterns with CSS:

  • Your webpage will load considerably faster when you use a pattern instead of an image
  • Patterns unlike images never have sizing issues as the sizes are completely under your control
  • You can create more than just basic shapes with a good understanding of backgrounds.

Here are a few places, a CSS background can be preferred over an image:

  • Use a pattern as a background instead of an image when the foreground is going to have a lot of content and little unused space
  • Banner on your Portfolio site: once again, saves load time and shows off your css skills.
  • When your site supports themes(light/dark modes etc): Using a background pattern over background image will make it more theme-friendly because you simply change the colours in the pattern to match your theme.

Let's dive in!

To create our pattern (or any pattern) we need to understand the following 4 background properties:

background-image: This property, although commonly used for assigning images, is where we will use gradient functions to create our patterns.

background-image: linear-gradient(180deg, black, pink);
Enter fullscreen mode Exit fullscreen mode

linear-gradient() - this commonly used gradient method will let us specify a direction(in degrees, radians, or simply words) and a bunch of colours which it will arrange in the form of a gradient. For instance,

background-image: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
Enter fullscreen mode Exit fullscreen mode

gives us the following gradient,
Rainbow gradient
For patterns we often use multiple gradients in combinations. While using more than one gradient(simply separated by commas) we use the shorthand background property instead of background-image. For instance, the code below -

background: linear-gradient(0deg, blanchedalmond 33.3%, transparent 33.3%), 
            linear-gradient(0deg, pink 66.6%, transparent 66.6%), 
            lightblue
Enter fullscreen mode Exit fullscreen mode

creates the following background:
Striped background with lightblue, blanched almond and pink colours

Few important things to note here

  • We must understand that the background property stacks the gradients in a bottom up fashion. In the above example - first the entire box is filled with light blue(bottom most value) above which we have a pink box(2/3rd of the total height) and above all a blanchedalmond box(1/3rd of the total height).
  • To achieve sharp or absolute color transitions (unlike the blended colors in the above Rainbow) we specify the exact percentage of space a color occupies.
  • We use the color value transparent if we do not wish to include a specific color. We create the effect that the pink box only occupies 2/3rd the height we simply say pink 66.6%, transparent 66.6% i.e., pink upto 66.6% and transparent from
  • The direction in which the degrees are evaluated is always clockwise.

background-position: This property lets us move around the gradients within the containing element. It takes values in CSS units for the x and y axes as follows

background-position: 10px 20px;
Enter fullscreen mode Exit fullscreen mode

background-size: This property lets us define the size within which the pattern is to be created. This is a complex CSS property as it can take multiple types of values. However, with respect to this blog we will need only to understand the following type.

background-size: 60px 60px;
Enter fullscreen mode Exit fullscreen mode

Here we have simply defined the width and height of the background i.e. the background is now contained to a 60*60 box in the element.

background-repeat: This property controls how the background gets repeated in the container. Since we are attempting to create a symmetrical pattern we will ensure the value reads:

background-repeat: repeat;
Enter fullscreen mode Exit fullscreen mode

To understand them all better look at the following snippet:

background-image: linear-gradient(180deg, black, pink );
background-size: 60px 60px;
background-position: 60px 60px;
background-repeat: no-repeat;
Enter fullscreen mode Exit fullscreen mode

Since we have given a no-repeat we will see a single box of dimension 60*60px with a gradient at a position of 60px from the top-left of the container as follows.
A box with black-pink gradient

To construct the bookmark pattern let's break it down to simple shapes first
Book mark shape break down
We first set the background to be white. Assign a background-size, for example lets take 40px*40px. To create each triangle we will be using the linear-gradient() function
Triangle 1:

background: linear-gradient(120deg, black 50%, transparent 50%), 
            white;
Enter fullscreen mode Exit fullscreen mode

Triangle 2:

background: linear-gradient(60deg, black 50%, transparent 50%), 
            white;
Enter fullscreen mode Exit fullscreen mode

Put together we have

background:  linear-gradient(120deg, black 50%, transparent 50%), 
             linear-gradient(60deg, transparent 49%, black 50%), 
             white
background-size: 40px 40px;
Enter fullscreen mode Exit fullscreen mode

The above code creates 40*40 boxes with 2 triangles placed one above the other but the background looks like this πŸ‘‡ due to background repeat.

Black background with white triangles
To create the bookmark effect we add horizontal and vertical white stripes as separators i.e.,
Bookmark construction as a combination of stripes and triangles

The white stripes can be created with the following code:

background: linear-gradient(0deg, white 15%, transparent 15%) 0 6px,
            linear-gradient(90deg, white 50%, transparent 50%) -10px 0
Enter fullscreen mode Exit fullscreen mode

Note that here, we have specified a background position for each of the gradient right after the function. Now we put it all together as follows,

background: linear-gradient(0deg, white 15%, transparent 15%) 0 6px, 
            linear-gradient(90deg, white 50%, transparent 50%) -10px 0, 
            linear-gradient(120deg, black 50%, transparent 50%), 
            linear-gradient(60deg, transparent 49%, black 50%), 
            white;
background-size: 40px 40px;
Enter fullscreen mode Exit fullscreen mode

This gives us the complete pattern. Codepen demo below πŸ‘‡

I was inspired to learn CSS patterns after visiting Lea Verou's Pattern Gallery. Check it out for some amazing patterns 🀩.
I was further inspired to create my own pattern gallery which is live here and the code can be found on github. Thanks for reading. I'd love to see the patterns that you create. Please feel free to share them with me on twitter or in the comments below!

Latest comments (7)

Collapse
 
kaushlesh profile image
Kaushleshcodes

Nice, your way of explanation given impression on my mind 😊

Collapse
 
senthilkumar06 profile image
Senthil kumar Balasubramanian

Good one Akshya!!!

Collapse
 
abhaykrishna profile image
Abhay Krishna Arunachalam

This is amazing Akshaya! 😍 Appreciated the fact that each CSS property was followed by an image clarifying its effect 😎

Collapse
 
venkyakshaya profile image
Akshaya Venkatesh

Thank you Abhay. Glad it was useful πŸ˜ŒπŸ˜‡

Collapse
 
abeltiezazu profile image
Info Comment hidden by post author - thread only accessible via permalink
Abel Tiezazu

try more simple

Collapse
 
afif profile image
Temani Afif

This can also be done using only 2 gradients if you consider conic-gradient. Here is a quick implementation: codepen.io/t_afif/pen/qBmjavX .. you will need few math to control the shape and the gaps.

Collapse
 
venkyakshaya profile image
Akshaya Venkatesh

First of all Temani - I have been a huge fan of your work. Thanks for reading my blog 🀩 I saw the Codepen. I picked linear gradient because I personally felt it’s easier to start with and easier to explain. Thanks for sharing the conic gradient solution. 😎 It’s really cool πŸ™Œ

Some comments have been hidden by the post's author - find out more