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.
使用してtext-decoration:underline;いますが、テキストと下線が接触しています。テキストと下線の間のスペースを増やすことはできますか?
text-decoration:underline;
これです。テキストとアンダーラインの間にスペースを作りたい。
border-bottomでスペースを制御できるように、別のフォントを使用するか、代わりに を使用してくださいpadding-bottom。
border-bottom
padding-bottom
私は同じ問題を抱えていたので、使用しました:
.underline_text { border-bottom: solid 2px #000000; display: inline; padding-bottom: 3px; }