Recall & Review
beginner
What is a card image in Bootstrap?
A card image is an image placed inside a Bootstrap card component, usually at the top or bottom, to visually represent the card content.
Click to reveal answer
beginner
How do you add an overlay on a card image in Bootstrap?
You add an overlay by placing a
card-img-overlay div inside the card with the image. This overlay can contain text or other content displayed over the image.Click to reveal answer
beginner
Which Bootstrap class makes the card image fill the card width automatically?The class
card-img-top or card-img-bottom makes the image fill the card's width at the top or bottom respectively.Click to reveal answer
intermediate
What is the purpose of
card-img-overlay in Bootstrap cards?It allows you to place text or other content on top of the card image, creating a layered effect with the image as background.
Click to reveal answer
intermediate
Can you use multiple elements inside a
card-img-overlay? If yes, give an example.Yes, you can add headings, paragraphs, buttons, or any HTML inside
card-img-overlay. For example, a heading and a button can appear over the image.Click to reveal answer
Which class is used to place an image at the top of a Bootstrap card?
✗ Incorrect
The
card-img-top class places the image at the top of the card.What does the
card-img-overlay class do?✗ Incorrect
The
card-img-overlay class places content like text or buttons over the card image.Where should the
card-img-overlay div be placed in the card structure?✗ Incorrect
The
card-img-overlay should be inside the card but outside the image.Which of these is NOT a valid Bootstrap card image class?
✗ Incorrect
card-img-center is not a valid Bootstrap class.What kind of content can you put inside a
card-img-overlay?✗ Incorrect
You can put any HTML content inside
card-img-overlay, such as text, buttons, or headings.Explain how to create a Bootstrap card with an image and text overlay on top of the image.
Think about layering content on top of an image inside a card.
You got /4 concepts.
Describe the difference between
card-img-top and card-img-overlay in Bootstrap cards.One is for image placement, the other is for layering content.
You got /3 concepts.