LoginSignup
12
4

More than 3 years have passed since last update.

CSS 文字の下線が消えない!?

Posted at

cssの

text-decoration: none;

が効かない事があったので対処法をまとめてみました。
以下経緯です。


①最初のコード
index.html
<div class="under-line">
  <a href="[リンク先のURL]">
    <span>下線を消してみる</span>
  </a>
</div>
styles.css
.under-line {
    font-size: 20px;
    text-decoration: none;
}

一番上の親要素に適応させればいいのでは?と思い書いたもの。
結果は
20191008_Qiita01.jpg
消えませんでした。


②変更後のコード (index.htmlは変更してません)
styles.css
.under-line {
    font-size: 20px;
}  

.under-line a {
    text-decoration: none;
}

<a>要素に適応させてみました。
20191008_Qiita02.jpg

消えました。

12
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
4