DEV Community

Cover image for Blob shapes with CSS
Sandeep Sharma
Sandeep Sharma

Posted on

Blob shapes with CSS

In this article, I'm going to talk about how can we create Blob shapes just using CSS.

So let's start with this. To achieve this, we're going to use a well-known CSS property called border-radius. Yes, you read it right we can do with just border-radius. To understand how this works, we need to first understand the property in-depth.

Learning about border-radius

We use border radius to have rounded/smoother corners for the elements. Each element in HTML has four corners(top-left, top-right, bottom-right, and bottom-left). We can use this property in multiple ways. For example,

// one value (all 4 corners)
border-radius: 10px;
// four values (top-left top-right bottom-right bottom-left)
border-radius: 10px 20px 30px 40px;
Enter fullscreen mode Exit fullscreen mode

How this works

This syntax is just a shorthand. As we already know, we apply all 4 border-radius just using the single property. So if we want to apply it to a single corner (let's say top-left), we can do

border-top-left-radius: 10px;
Enter fullscreen mode Exit fullscreen mode

Top left border-radius example
What it does here is, it goes 10px right and down from the top-left corner and creates the round shape.

Enhance the learning

So we learned the basics of border-radius. But we have another thing to talk about which is, we can pass another value to this.

border-top-left-radius: 10px 20px;
Enter fullscreen mode Exit fullscreen mode

Top left border-radius example with two values
Now, what's it doing here is, it is going 10px to the right and 20px down and connecting with a round shape.

Creating blob shapes

We did learn about shorthands, but we're not going to write shorthands, right? So the question here is, can we not do this directly from the border-radius property? The answer is, that we can. Let's learn about syntax by looking at this example.

border-radius: 10px 20px 30px 40px / 40px 30px 20px 10px;
Enter fullscreen mode Exit fullscreen mode

Blob shape using border radius

If you notice, each value after the slash(/) is mapped to its corresponding value. This results in this.

border-top-left-radius: 10px 40px;
border-top-right-radius: 20px 30px;
border-bottom-right-radius: 30px 20px;
border-bottom-left-radius: 40px 10px;
Enter fullscreen mode Exit fullscreen mode

Let's make this more fun

Okay, now we have learned to create blob shapes with CSS. To make it more fun we can add animations, transitions and hover effects, etc. Please check out this codepen with a simple hover effect with pseudo-elements.

I hope this article was helpful and you learned something new. You can connect with me at Linkedin

Top comments (1)

Collapse
 
duranbe profile image
Benoît Durand

Very neet effect !