Clip a Photograph
Apply clip-path to an img. Meaning stays in alt; the shape is presentation.
Circle and freeform crop
img { width: 280px; height: 280px; object-fit: cover; clip-path: circle(48%); }
circle(48%)
polygon(…)
- Pair a fixed slot with
object-fit: cover, then clip the visible paint. - Do not hide the only description of the photo inside the clipped area — use
alt.