Estou tentando exibir um link em branco, sem sublinhado. A cor do texto aparece corretamente em branco, mas o sublinhado azul persistentemente persistente. Eu tentei text-decoration: none;
e text-decoration: none !important;
no CSS para remover o sublinhado do link. Nem funcionou.
.boxhead .otherPage {
color: #FFFFFF;
text-decoration: none;
}
<div class="boxhead">
<h2>
<span class="thisPage">Current Page</span>
<a href="myLink"><span class="otherPage">Different Page</span></a>
</h2>
</div>
Como posso remover o sublinhado azul do link?