Ultra Meal is a nutritious and convenient meal replacement shake designed to provide a balanced source of energy, protein, carbs and fat. Each serving delivers 24g of protein, supporting your daily nutritional needs, along with 220 calories, making it an ideal choice for a balanced meal on the go.
/* 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;
}
}