Text-decoration: none not working

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

    if you want a nav bar do

    ul{ list-style-type: none; } li{text-decoration: none;
    
    • This will make it want to make the style of the list type to None or nothing

    with the < a > tag:

    a:link {text-decoration: none}
    

提交回复
热议问题