Tested tool guide
Tested browser tools
Checked August 15, 2026
What CSS Clip Path Maker does, with a checked example
This tool lets you build a CSS clip-path value by manipulating a shape directly on a preview box instead of typing coordinates by hand. Switch between polygon, circle, and ellipse modes, drag the resulting points or radius handles, and the tool writes out the matching clip-path function as you go. The part people trip on: every coordinate is a percentage of the box being edited, not a fixed size, so a shape that looks right in the square preview can skew badly once pasted onto a wide banner or a differently proportioned element.
Worked example
A concrete input and expected output from the current implementation.
Input
Set a triangle in polygon mode with vertices at top-center, bottom-right corner, and bottom-left corner of the preview box.
->
Expected output
clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
Each vertex is expressed as an x% y% pair relative to the element's own box - 50% 0% for top-center, 100% 100% for bottom-right, and 0% 100% for bottom-left - with the path closed automatically back to the first point.