• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:リンクの下線と文字の間隔を開けるには)

リンクの下線と文字の間隔を開けるには

このQ&Aのポイント
  • ブログでリンクの下線と文字の間隔を開ける方法を教えてください。padding-bottom: px という方法があるようですが、うまくいきません。
  • リンクのスタイルを変更して、下線と文字の間隔を開ける方法を教えてください。試したpadding-bottom: px の方法がうまくいきません。
  • ブログでリンクの下線と文字の間隔を変えたいのですが、うまくいきません。padding-bottom: px の方法を試してみましたが、うまくいきませんでした。

質問者が選んだベストアンサー

  • ベストアンサー
  • k_jill
  • ベストアンサー率34% (36/105)
回答No.1

text-decorationだと多分下線の位置を細かく弄れないと思います。この下線装飾を消して、ボックスの枠線で擬似的な下線を作るのがpaddingを使う方法だと思います。  という事でやや無理矢理っぽいですが…。 a:link { text-decoration : none; margin : 0px; padding : 0px; padding-bottom : 2px; border-bottom-style : solid; border-bottom-width : 1px; } a:visited{ text-decoration : none; margin : 0px; padding : 0px; padding-bottom : 2px; border-bottom-style : solid; border-bottom-width : 1px; } a:hover { text-decoration : none; margin : 0px; padding : 0px; padding-bottom : 2px; border-bottom-style : solid; border-bottom-width : 1px; } a:active{ text-decoration : none; margin : 0px; padding : 0px; padding-bottom : 2px; border-bottom-style : solid; border-bottom-width : 1px; }  下線と文字の間隔は padding-bottom で変更して下さい。線の太さは border-bottom-width でどうぞ。  不細工な指定ですが多分此れで大丈夫なはず…。

N0W
質問者

お礼

すごい!できました! なるほどボックスの枠線を利用するしかなかったんですね。 ありがとうございました!

すると、全ての回答が全文表示されます。

関連するQ&A