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

I'm using some customized <sub>...</sub> to provide index subscripts in certain <tt> regions:

 tt.indexed sub
 {
     color:#0000ff;
     position:relative;
     top:0.5em;
     right:1em;
     margin-right:-0.5em;
 }
 tt.indexed sub:last-child
 {
     margin-right:-1em;
 }

Basically to pretty up stuff like 000001 002103 104005 106007 and make it a bit more compact.

However, I'm having an issue where lines beneath my <tt class="indexed"> regions overlaps the custom subscripts (just a little, but it's visually annoying). I tried upping the margin-bottom on tt.indexed sub, but it didn't seem to have an effect. Do I have to set a margin-bottom on tt.indexed, or is there a setting I can use in tt.indexed sub?

share|improve this question
I always try using a padding when margin doesn't work. Try it once, it may work. – Joost Sep 18 '09 at 18:59

1 Answer

up vote 1 down vote accepted

Try using a line-height declaration with em.

share|improve this answer

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.