Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 18, 2021 05:58 pm GMT

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);

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);

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

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;

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;

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;

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;

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;

Triangle 2:

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

Put together we have

background:  linear-gradient(120deg, black 50%, transparent 50%),              linear-gradient(60deg, transparent 49%, black 50%),              whitebackground-size: 40px 40px;

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

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;

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!


Original Link: https://dev.to/venkyakshaya/creating-patterns-with-css-simplified-5a60

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To