Changing link underline color

后端 未结 10 2389

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条回答
  •  攒了一身酷
    2020-12-16 10:36

    I know this is an old question, but I thought I'd add this...

    a:active, a:link, a:visited{
        background-image: linear-gradient(rgba(255,255,255,0)50%, #ff5400 50%);
        text-decoration: none;
        background-size: 2px 2px;
        background-position: 0 1.2em;
        background-repeat: repeat-x;
    }
    

    Note: Older browser support is not completely supported

提交回复
热议问题