I used to try to clip images using the CSS clip property, but that was so difficult that I typically gave up and got out my image editor. What is the point of spending four hours trying to force an image to clip in CSS when I can do the same thing in Acorn in less than five minutes? But now that clip is deprecated, I don’t have to use it anymore. But better yet, the new CSS clip-path property works so much better!
The clip-path property includes features like:
- You can apply it to any element, not just absolutely positioned ones
- You can use SVG to define the clipping path
- It actually works!
. . .