Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 14 down vote accepted

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

share|improve this answer
Instructions how to do this on stackoverflow.com/questions/1734618/…. – paislee Dec 17 '11 at 8:06
1  
such a sick trick :) – Milimetric Jul 10 '12 at 16:39
If you have trouble with your border-bottom expanding beyond the width of the text, add display: inline-block – Dylan Valade Mar 29 at 0:44

Applying more line-height may help.

share|improve this answer
2  
Increasing line-height does not add any space between text and default underline. – paislee Dec 17 '11 at 8:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.