Remove text decoration from links

后端 未结 1 1384
情歌与酒
情歌与酒 2021-01-20 19:20

Why won\'t this remove the underline from the facebook and assassin industries links on this page.

.module_wpproad {
text-decoration:none;
border:none;
}


        
相关标签:
1条回答
  • 2021-01-20 20:24

    The default text-decoration attribute of links takes precedence over the text-decoration attribute of the container. You will need to be specific in your override:

    .module_wpproad a {
        text-decoration: none;
    }
    
    0 讨论(0)
提交回复
热议问题