Text-decoration: none not working

后端 未结 14 2261
花落未央
花落未央 2021-01-01 09:08

Totally baffled! I\'ve tried rewriting the text-decoration: none line several different ways. I also managed to re-size the text by targeting it but the t

14条回答
  •  鱼传尺愫
    2021-01-01 09:22

    I had lots of headache when I tried to customize a WordPress theme and the text-decoration didn't help me. In my case I had to remove the box-shadow as well.

    a:hover {
        text-decoration: none;
        box-shadow: none;
    } 
    

提交回复
热议问题