Container Size: 8x20 Tabs Serving Size: 1 tablet (4g). Max servings per day: 4 x 4g tablet. Should not be a substitute for a varied and balanced diet and a healthy lifestyle. Do not exceed the recommended daily dosage. Excessive consumption mat produce laxative effects.
/* 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;
}
}