Is there any way that I can have 4 different colours on one side of a border in CSS? I currently have
#header { border-color:#88a9eb; }
I w
you can try this one:
.solid{ width: 300px; border-image: linear-gradient(to right, red 25%, blue 25%, blue 50%, green 50%, green 75%, orange 75%); border-image-slice: 4; }
DEMO