Table Of Content
How to use Picture tag in Shopify
1. Picture tag : What about the < Picture >  ? 
The most common use of the 
For example:
Before:-
< img src=”image-text-small.png” alt=”Image text” >
After:-
< picture
< source
srcset=”image-text-small.png 320w,
image-text-medium.png 800w,
Image-text-large.png 1200w”
sizes=”( min-width: 60rem ) 80vw,
( min-width: 40rem ) 90vw, 100vm” >
< img src=”image-text-small.png” alt=”Image text” >
Example:
For shopify
< picture class=”Dummy” >
< source media=”( max-width: 375px )”
srcset=”},
} 2x”>
< source media=”( max-width: 768px )”
srcset=”},
} 2x”>
< img src=”}”
srcset=”},
} 2x”
alt=”…” loading=”lazy” >
< /picture >

 
 
	 
	 
	 
	 
	