When Using <picture> for Responsive Images Last Image Does Not Show in DWT File
I am using the code below to insert different images. It works as expected when tested within a regular HTML page, but as a DWT file the third image shows only as a placeholder. The first two continue to load properly. Is there a reason for this and a way to fix?
The technique is described here. https://css-tricks.com/a-guide-to-the-responsive-images-syntax-in-html/#using-picture
<picture>
<source
srcset="images/header.png"
media="(min-width: 1000px)"
/>
<source
srcset="images/zoom_header.png"
media="(min-width: 600px)"
/>
<img
src="images/more_zoom_header.png"
/>
</picture>
