How to remove only underline from a:before?

后端 未结 6 1930
一整个雨季
一整个雨季 2020-12-02 12:38

I have a set of styled links using the :before to apply an arrow.

It looks good in all browser, but when I apply the underline to the link, I don\'t wan

6条回答
  •  眼角桃花
    2020-12-02 13:27

    try using instead:

    #test p:before {
        color: #B2B2B2;
        content: "► ";
        text-decoration: none;
    }
    

    will that do?

提交回复
热议问题