Skip to main content

Tailwind Clip Path Generator

Create custom shapes with CSS clip-path for Tailwind CSS.
Get arbitrary value syntax or CSS for @layer utilities.

Enter a custom clip-path value to override the preset

[clip-path:circle(50%_at_50%_50%)]
.clipped-element {
  clip-path: circle(50% at 50% 50%);
}

/* Or use in Tailwind @layer */
@layer utilities {
  .clip-custom {
    clip-path: circle(50% at 50% 50%);
  }
}

About Tailwind Clip-Path

Tailwind CSS doesn't have built-in clip-path utilities, but you can use arbitrary values with the bracket syntax. For reusable shapes, add custom utilities to your @layer utilities in your CSS file.