从链接中删除文本修饰

时间:2010-03-26 02:43:52

标签: text-decorations css

为什么不删除this page上facebook和刺客行业链接的下划线。

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

1 个答案:

答案 0 :(得分:5)

链接的默认text-decoration属性优先于容器的text-decoration属性。您需要在覆盖中具体:

.module_wpproad a {
    text-decoration: none;
}
相关问题