Changing link underline color

后端 未结 10 2406

I wonder if there is any trick to solve this problem.

I have my link as below text and want to change the underline color.

This link contains in many

10条回答
  •  萌比男神i
    2020-12-16 10:38

    In case anyone is interested - this worked for me - text-decoration-color CSS property:

    .example { 
        text-decoration: underline;
        text-decoration-color: red;
    }
    

    https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-color

提交回复
热议问题