Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
border-bottom: 1px #fff;この手法を使用せずに、リンクの下に別の色の線を (テキストに) 追加しようとしている人はいますか?
border-bottom: 1px #fff;
現在、この手法を使用すると、リンクのあるグラフィックの下にも線が引かれます。
リンクのあるグラフィックの下に線がある場合、次のようなスタイルを指定しています a {border-bottom: 1px #fff;}か? 代わりに、クラスを作成し、次のようなカスタム下線が必要なリンクにのみ適用します。
a {border-bottom: 1px #fff;}
.customUnderline {border-bottom: 1px #fff solid;} <a class="customUnderline">Your link</a>