Created: 2022-09-26
This the solution for problem whereby you want to serve cropped images for different layouts —
For example:
<picture> element.<picture>
<source media="(max-width:600px)"
srcset="green_crop.webp">
<source media="(min-width:800px)"
srcset="green.webp">
<img src="green.webp"
alt="A picture of grass in landscape">
</picture>