Why does my image not show but space is reserved?
If the src URL is broken or image fails to load, the browser still reserves space based on width and height attributes or natural image size, showing empty space or alt text.
💡 Check src URL and alt text; reserved space stays even if image missing (see render_step 3).
Why doesn't my alt text appear when the image loads?
Alt text only shows if the image fails to load or for screen readers. When image loads correctly, alt text is hidden visually but used for accessibility.
💡 Alt text is invisible if image loads; it is for screen readers or fallback (see render_step 2).
Why does my image look stretched or squished?
If width and height attributes do not match the image's natural ratio, the browser stretches or squishes the image to fit those dimensions.
💡 Use matching width and height or CSS object-fit to keep proportions (see render_step 3).