Why won't this remo开发者_开发百科ve the underline from the facebook and assassin industries links on this page.
.module_wpproad {
text-decoration:none;
border:none;
}
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;
}
加载中,请稍侯......
精彩评论