Text-decoration: none not working

后端 未结 14 2153
花落未央
花落未央 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:37

    I used the code below to get mine to work in Chrome. You can adjust the nesting:

    a:-webkit-any-link { color: black; }
    
    0 讨论(0)
  • 2021-01-01 09:40

    As a sidenote, have in mind that in other cases a codebase might use a border-bottom css attribute, for example border-bottom: 1px;, that creates an effect very similar to the text-decoration: underline. In that case make sure that you set it to none, border-bottom: none;

    0 讨论(0)
提交回复
热议问题