Re: [csswg-drafts] Possible way to have gradually higher resolution images and browser understanding of low bandwidth situation (#11691)

Here is an example if there were a hypothetical `bandwidth` CSS media query:
```
<picture>
   <source media="(bandwidth: low)" srcset="desktop_lowres.png">
   <img src="desktop_highres.png" alt="A photo of London by night">
</picture>
```
Ideally a browser would download all picture elements with `bandwidth: low` first, then for those where that made a difference, load them with `bandwidth: high`(?) later to update them in-place while the page is already usable and fully populated with the low-res images.

-- 
GitHub Notification of comment by ell1e
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/11691#issuecomment-2690279437 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Friday, 28 February 2025 10:24:23 UTC