AMP layout. amp-img , native; sourceet , "css-" (, 96px/) layout= responsive, . AMP h/w.
.
<amp-img
src="/img/small.jpg"
srcset="/img/medium.jpg 640w,
/img/small.jpg 320w"
width="1800"
height="2777"
layout="responsive"
alt="Don't forget to add one">
</amp-img>
layout="responsive" AMP, . , - "" (, div).
amp-img amp--. :
<amp-img
media="(max-width: 639px)"
src="/img/small.jpg"
width="450"
height="694"
layout="responsive"
alt="Don't forget to add one">
</amp-img>
<amp-img
media="(min-width: 639px)"
src="/img/medium.jpg"
width="900"
height="1388"
layout="responsive"
alt="Don't forget to add one">
</amp-img>
"media" ( , , ).
: https://www.ampbyexample.com/advanced/layout_system/