39

i am using text-decoration:underline; but text and underline are touching each other.can i increase space between text and underline?

alt text this one. i want to make space between text and underline.

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Kali Charan Rajput
  • 12,046
  • 10
  • 35
  • 46

2 Answers2

64

Either use a different font or use a border-bottom instead so that you can control the space with padding-bottom.

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
26

I had same issue then i used :

.underline_text {
      border-bottom: solid 2px #000000;
      display: inline;
      padding-bottom: 3px;
}
Mandeep Gill
  • 390
  • 5
  • 12