Per https://html5.validator.nu/?doc=https%3A%2F%2Fmonitor.firefox.com&showimagereport=yes Seeing 6 instances of the "Element [`img`](https://html.spec.whatwg.org/multipage/#the-img-element) is missing required attribute `src`." error. > From line 49, column 13; to line 49, column 183 > > ```html > <img class='monitor-logo' srcset='/images/monitor-logo-transparent.webp 213w, /images/monitor-logo-transparent@2x.webp 425w' width='213' height='33' alt='Firefox Monitor'>↩ > ``` Quoth the MDN: > ### Using src with an image set > When using a set of images with the [`srcset`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/srcset) property, the `src` serves as either a fallback for older browsers, or as the `1×` size of the image. > — https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/src#using_src_with_an_image_set So it appears that the `src` is still required/recommended as a fallback when using `srcset`. 🤷
Per https://html5.validator.nu/?doc=https%3A%2F%2Fmonitor.firefox.com&showimagereport=yes
Seeing 6 instances of the "Element
imgis missing required attributesrc." error.Quoth the MDN:
So it appears that the
srcis still required/recommended as a fallback when usingsrcset. 🤷