CSS - Multiple text-decorations with style and color
I want to make a text with red wavy underline and blue dashed overline using text-decoration . This is my code: (working only in Mozilla Firefox) (don't works, because display only overline) span { font-size: 40px; text-decoration: underline wavy red; text-decoration: overline dashed blue; } <span> Some Text </span> How can I do that effect using only text-decoration ? (I know, it will work only in Mozilla Firefox) Thanks for help. You can not have two values for one css property at the same time. Workaround: wrap yout text in another span and add separate text-decoration to each span: span {