【发布时间】:2010-03-26 10:50:33
【问题描述】:
为什么不删除this page 上 Facebook 和刺客行业链接的下划线。
.module_wpproad {
text-decoration:none;
border:none;
}
【问题讨论】:
标签: text-decorations css
为什么不删除this page 上 Facebook 和刺客行业链接的下划线。
.module_wpproad {
text-decoration:none;
border:none;
}
【问题讨论】:
标签: text-decorations css
链接的默认text-decoration 属性优先于容器的text-decoration 属性。您需要具体说明您的覆盖:
.module_wpproad a {
text-decoration: none;
}
【讨论】:
.module_wpproad a 而不是.module_wpproad :)