Brown tahini, made from whole sesame seeds, has a rich, nutty flavor and is perfect for enhancing both sweet and savory dishes. Use it as a base for creamy dressings and sauces, or blend it into hummus for extra depth. Drizzle it over roasted vegetables, mix it into smoothies for a nutritional boost, or spread it on toast with honey for a delicious breakfast.
/* 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;
}
}