Skip to main content

CSS Blob Generator

Create organic blob shapes using CSS border-radius.
Adjust complexity and randomize to get unique shapes.

5 points
SimpleComplex
200px
.blob {
  width: 200px;
  height: 200px;
  background: #3b82f6;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

How CSS Blob Shapes Work

Border Radius Technique

Blobs use the 8-value border-radius syntax where each corner has horizontal and vertical radii, creating asymmetric organic shapes.

The Syntax

border-radius: a b c d / e f g h;
First 4 values are horizontal radii, last 4 are vertical radii for each corner.

Use Cases

Perfect for hero backgrounds, decorative elements, image masks, feature highlights, and adding organic aesthetics to modern web designs.