Design custom shapes using clip-path visually.
Visual tool for CSS clip-path shapes with presets, polygon editor, and export.

CSS class
.clipped {
clip-path: circle(50% at 50% 50%);
-webkit-clip-path: circle(50% at 50% 50%);
}Inline style
style="clip-path: circle(50% at 50% 50%); -webkit-clip-path: circle(50% at 50% 50%);"
Value only
circle(50% at 50% 50%)
Tailwind
/* Tailwind: use arbitrary value */ [clip-path:circle(50% at 50% 50%)]
CSS clip-path is used to hide parts of an element outside a defined region. Common use cases include: image masks (circles, hexagons, custom shapes), card and banner shapes, decorative cutouts, and responsive “reveal” effects. Combine with transitions for animated clip reveals.
circle(radius at x y) clips to a circle—ideal for avatars and round images. ellipse(rx ry at x y) gives an oval. polygon(x1 y1, x2 y2, …) lets you define any shape by listing corner points in order (percent or length). inset(top right bottom left round radius) clips to an inner rounded rectangle, useful for “frame” effects.
clip-path is supported in all modern browsers. For older WebKit (e.g. Safari < 9), use the -webkit-clip-path prefix alongside clip-path. This tool outputs both. SVG-based clip-path is an alternative for very old browsers.
border-radius only creates rounded rectangles. clip-path can create circles, ellipses, polygons, and custom shapes. Use border-radius for simple rounded corners; use clip-path when you need non-rectangular shapes or animated shape changes. Both are GPU-friendly and performant.
Design custom shapes using clip-path visually.
Free CSS clip-path generator — build polygon, circle, and ellipse shapes visually with draggable points and copy the clip-path CSS property instantly. No signup needed.
Tune sliders, points, or layers with live preview.
Compare states or presets before exporting.
Paste the declaration into your stylesheet or component.
Advertisement
Percentages relative to the box, px, and polygon() with comma-separated point pairs.
Yes on the element or a wrapper with overflow hidden; verify in Safari for complex polygons.
Clip-path coordinates are edited client-side; shape points are not uploaded.
Verify in target browsers; filters and clip-path support varies.
For design prototyping—not a substitute for production design tokens.
Part of Design & UI Tools
More free tools for the same workflow.
Advertisement
Reviewed by EverydayTools Editorial Team on 2026-05-19.