I\'ve searched and can only find multiple border issues. I need to make one border with 4 colors that repeat.
Actually, you can use pure CSS for this. You just need list item, then display to inline block, and add every list a different color.
You can use box-shadow but its not fully supported
http://jsfiddle.net/f7JT7/1/
box-shadow:
0 -5px 0 red, 0 5px 0 red,
0 -10px 0 yellow, 0 10px 0 yellow,
0 -15px 0 green, 0 15px 0 green,
0 -20px 0 purple, 0 20px 0 purple;
http://caniuse.com/css-boxshadow