Roasted Red Peppers are a great addition to sandwiches and wraps. Toss them into salads, or blend them into hummus for a vibrant, sweet twist. They also make an excellent topping for pizzas and bruschetta, or can be served as part of an antipasto platter alongside cheeses and cured meats.
/* Mark the container as a query container */
.image-container {
container-type: inline-size;
}
/* When the container’s width is at least 500px, apply a max-width style to the image */
@container (min-width: 500px) {
.image-container img {
max-width: 80%;
height: auto;
}
}