Kel*_*zle 3 css text-decorations
为什么不删除此页面上facebook和刺客行业链接的下划线.
.module_wpproad {
text-decoration:none;
border:none;
}
Run Code Online (Sandbox Code Playgroud)
text-decoration链接的默认属性优先于text-decoration容器的属性.您需要在覆盖中具体:
.module_wpproad a {
text-decoration: none;
}
Run Code Online (Sandbox Code Playgroud)