vertical zig-zag
Use css to make a vertical zig-zag border.
by mrbinky3000
CSS
/**
* vertical zig-zag background
* CSS Zigzag Border with a Textured Background
*/
body {
background: linear-gradient(
90deg,
yellow 50%,
transparent 50%
),
linear-gradient(
45deg,
yellow 50%,
transparent 50%
) 50% 50%,
white
linear-gradient(
-45deg,
blue 50%,
yellow 50%
) 50% 50%;
background-repeat: repeat-y;
background-size: 100% 1px, 30px 30px, 30px 30px; /* change all the 30's to a new number to adjust the size of the zig-zags */
min-height: 100%;
}