GABA (Gamma-Aminobutyric Acid) is a non-protein amino acid that functions as a neurotransmitter in the human brain. GABA is naturally produced in the body and its presence within the central nervous system may help promote relaxation and ease nervous tension.
/* 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;
}
}