Perfect for washing up, scrubbing dishes and wiping up spills
Long-lasting and durable (each sponge lasts more than 1 month)
100% plastic free, breaks down into harmless organic waste
Toxin-free and not harmful to humans or ecosystems
Does not release microplastics into the environment
/* 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;
}
}