Totally baffled! I\'ve tried rewriting the text-decoration: none
line several different ways. I also managed to re-size the text by targeting it but the t
I used the code below to get mine to work in Chrome. You can adjust the nesting:
a:-webkit-any-link { color: black; }
As a sidenote, have in mind that in other cases a codebase might use a border-bottom
css attribute, for example border-bottom: 1px;
, that creates an effect very similar to the text-decoration: underline
. In that case make sure that you set it to none, border-bottom: none;