I've got some images which should lazy load natively. In chrome it works offline but not online. Some, but not all, images are not shown if I use loading="lazy". The first image is shown - the second not and so on. It's really curious, becouse I'm using it now without problems for a couple of years. I would appreciate some hints.
`<div class="item">
<a href="./about.html">
<h1>Über mich</h1>
<picture>
<source type="image/webp"
srcset="./anna_im_affe_IMG_5482_600.webp 600w,
./anna_im_affe_IMG_5482_1000.webp 1000w"
sizes="(max-width: 800px) 600px,
(min-width: 700px) 1000px,
(min-width: 900px ) 600px">
<img srcset="./anna_im_affe_IMG_5482_600.jpg 600w,
./anna_im_affe_IMG_5482_1000.jpg 1000w"
sizes="(max-width: 800px) 600px,
(min-width: 700px) 1000px,
(min-width: 900px ) 600px"
src="./anna_im_affe_IMG_5482_1000.jpg" alt="xxxx" loading="lazy" width="100%" height="auto">
</picture>
</a>
</div>
<div class="item">
<a href="./kuratierung.html">
<h1>Kuratierung</h1>
<picture>
<source type="image/webp"
srcset="./Unter-Strom-140320-083_semper_600.webp 600w,
./Unter-Strom-140320-083_semper_1000.webp 1000w"
sizes="(max-width: 800px) 600px,
(min-width: 700px) 1000px,
(min-width: 900px ) 600px">
<img srcset="./Unter-Strom-140320-083_semper_600.jpg 600w,
./Unter-Strom-140320-083_semper_1000.jpg 1000w"
sizes="(max-width: 800px) 600px,
(min-width: 700px) 1000px,
(min-width: 900px ) 600px"
src="./Unter-Strom-140320-083_semper_1000.jpg" alt="xxx" loading="lazy" width="100%" height="auto">
</picture>
</a>
</div>`