Images Flashcards

1
Q

What is the difference between decorative and content images?

A
  • Decorative images are applied via CSS (e.g., background gradients, buttons).
  • Content images add context and are embedded using HTML.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does the src attribute in an <img> element do?

A

It specifies the image source (file path or URL) for the browser to fetch and render the image.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Why is the alt attribute important for an image?

A

The alt attribute describes the image, important for accessibility (assistive tech) and displayed if the image doesn’t load.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the purpose of the srcset attribute in an <img> element?

A

It provides multiple image sources and serves the appropriate image based on device resolution, browser capabilities, and viewport size.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How does the sizes attribute work with srcset in an <img> element?

A

The sizes attribute defines the image size for specific media queries (e.g., (max-width: 800px) 400px) to ensure responsive image selection.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the <picture> element used for in HTML?

A

It is used to contain multiple <source> elements with different image options, and an <img> element as a fallback.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What role does the height and width attributes play in image performance?

A

Setting height and width helps define the image aspect ratio and reduces Cumulative Layout Shift (CLS).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the loading="lazy" attribute do?

A

It defers the loading of the image until it enters the viewport, saving bandwidth and improving page load time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can you improve image accessibility for SVG files?

A

Use the role="img" attribute for SVG images to ensure proper accessibility.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the significance of the role="img" attribute for SVG images?

A

It indicates that the SVG is an image and helps with proper accessibility interpretation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do srcset and sizes work together in responsive image design?

A
  • srcset suggests multiple image files.
  • sizes defines which image size to use based on viewport size and screen resolution.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the benefits of using the loading="lazy" attribute on images?

A

It defers image loading until the image is about to enter the viewport, reducing initial page load time and saving bandwidth.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Why is it important to set an aspect ratio for images?

A

Defining the aspect ratio prevents layout shifts and ensures that the space for the image is reserved, improving visual stability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly