I am using TailwindCSS 3.x to display an image as h-9 sm:h-20 using TailWindCSS's utility classes based on responsiveness.
<img class="h-9 sm:h-20 rounded-full" src="path/image-1.webp" alt="img" />
I want to know if it's possible to achieve the same using img attributes width and height ?
For desktop I want it set as width="80" height="80"
For mobile I want it as width="36" height="36"