Glutamine is one of the 20 amino acids that make up all proteins. Glutamine is a conditionally essential amino acid, meaning that while the body can produce it naturally, certain conditions such as injury, illness or intense physical activity can increase the demand for it.
/* 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;
}
}