Add a box-shadow to a Card-like Element HELP23123

How do I solve this?

The element now has an id of thumbnail . With this selector, use the example CSS values above to place a box-shadow on the card.

I see the div with the id thumbnail but i’m not sure how to type the box-shadow into it.

Help

Can you share code or provide a link to the lesson?

Use CSS

between <style></style>

select your id thumbnail:

#thumbnail {
 // Here add a box shadow property and set its value
}

The result: the element with the id thumbnail will have the box shadow.