Tested tool guide
Tested browser tools
Checked August 16, 2026
What CSS Clip-Path Generator does, with a checked example
Shape an element's visible region by positioning the geometry for one of four CSS basic-shape forms: polygon(), circle(), ellipse(), or inset(). The generator translates the visual result into a clip-path declaration for a stylesheet. Polygon points determine straight edges, while the other modes describe radii, a center, or inward offsets. The frequent surprise is that clipping changes what is painted, not the element's layout box, so neighboring content still lays out around the original rectangle.
Worked example
A concrete input and expected output from the current implementation.
Input
Polygon points, in order: 0% 0%, 100% 0%, 50% 100%
->
Expected output
clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
The first two points are the top-left and top-right corners, and the third is the bottom center. The final edge closes back to the first point, producing a triangle.