Snippets Collections
/* Linear gradient pattern */

.repeat {
  background-image: 
    repeating-linear-gradient(
      45deg,
      yellow,
      yellow 10px,
      red 10px,
      red 20px /* determines size */
    );
}

/* Radial gradient pattern */

.repeat {
  background: 
    repeating-radial-gradient(
      circle at 0 0, 
      #eee,
      #ccc 50px
    );
}
star

Wed Jan 08 2020 19:00:00 GMT+0000 (Coordinated Universal Time) https://css-tricks.com/snippets/css/css-repeating-gradients/

#css #webdev #design #gradients

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension