Remove text decoration from links

Why does this not remove the underline from the links to facebook and assassin industries on this page .

.module_wpproad {
text-decoration:none;
border:none;
}
+3
source share
1 answer

By default, the text-decorationlink attribute takes precedence over the text-decorationcontainer attribute . You must be specific in your redefinition:

.module_wpproad a {
    text-decoration: none;
}
+5
source

Source: https://habr.com/ru/post/1738602/


All Articles