text-decoration:noneが効かず、リンクテキストの下線が消せないときの対処法

text-decoration:noneが効かず、リンクテキストの下線が消せないときの対処法

事象が起きた環境:Chrome87 要素にtext-decoration:none;を指定したが、聞いていない様子。 .test{ text-decoration:none; } ①displayのプロパティをblockまたはinline-blockにする。 .test{ display:inline-block; text-decoration:none; } ちなみに反対に下線をテキストに付与したい場合は、以下で実装できます。 .test{ display:inline-block;...