How to make a double line border in CSS, each line in a different color without using background-image?
background-image
For example like this:
Have you try add a between and with the following css:
span { height:0; border-top:blue; border-bottom:#ff0000; line-height:0; }