Images Flashcards
What is the difference between decorative and content images?
- Decorative images are applied via CSS (e.g., background gradients, buttons).
- Content images add context and are embedded using HTML.
What does the src attribute in an <img>
element do?
It specifies the image source (file path or URL) for the browser to fetch and render the image.
Why is the alt
attribute important for an image?
The alt
attribute describes the image, important for accessibility (assistive tech) and displayed if the image doesn’t load.
What is the purpose of the srcset attribute in an <img>
element?
It provides multiple image sources and serves the appropriate image based on device resolution, browser capabilities, and viewport size.
How does the sizes attribute work with srcset
in an <img>
element?
The sizes
attribute defines the image size for specific media queries (e.g., (max-width: 800px
) 400px
) to ensure responsive image selection.
What is the <picture>
element used for in HTML?
It is used to contain multiple <source>
elements with different image options, and an <img>
element as a fallback.
What role does the height
and width
attributes play in image performance?
Setting height
and width
helps define the image aspect ratio and reduces Cumulative Layout Shift (CLS).
What does the loading="lazy"
attribute do?
It defers the loading of the image until it enters the viewport, saving bandwidth and improving page load time.
How can you improve image accessibility for SVG files?
Use the role="img"
attribute for SVG images to ensure proper accessibility.
What is the significance of the role="img"
attribute for SVG images?
It indicates that the SVG is an image and helps with proper accessibility interpretation.
How do srcset
and sizes work together in responsive image design?
-
srcset
suggests multiple image files. - sizes defines which image size to use based on viewport size and screen resolution.
What are the benefits of using the loading="lazy"
attribute on images?
It defers image loading until the image is about to enter the viewport, reducing initial page load time and saving bandwidth.
Why is it important to set an aspect ratio for images?
Defining the aspect ratio prevents layout shifts and ensures that the space for the image is reserved, improving visual stability.