LoginSignup
5
0

More than 5 years have passed since last update.

下線にpaddingを指定したい text-decoration : underline

Last updated at Posted at 2019-02-15

text-decoration : underlineにpaddingを指定されたようなデザインがある場合…、CSSのデフォルトでは対応ができません😕

そんな場合の対応法です。
border-bottomdisplay:inlineを使って対応できます。

CSS

h2{
  border-bottom:2px solid #f00;
  padding-bottom:5px;
  display:inline;
  line-height:2;
}

デモ

See the Pen 下線が2行でpadding-bottomを指定したい by harumi-sato (@harumi-sato) on CodePen.

5
0
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
5
0