Learn how to combine blend modes with repeating patterns to create texture and visual interest.
.pattern-blend {
mix-blend-mode: multiply;
background-image: repeating-linear-gradient(
45deg,
yellow,
yellow 10px,
red 10px,
red 20px
);
}
/* Patterns blend beautifully with backgrounds */
/* Creates texture and visual interest */