mozilla seems to have its own opinion, about how far under a hyperlink the underlining goes....according to different font sizes and styles, ie: bold is there a way to set underlining to eg: 1px below the text? as it distorts cells otherwise G-E-M
If you want to give it a try, keep in mind that there's a typo on this page: p { line-height: 1.5; } 1.5 should be in em's; i.e. p { line-height: 1.5em; } Except zero, all values in CSS must be specified in some units (px, em, etc). IE may interpret the first line as if it's in pixels (depending on the version). J.D.
Just realized that this isn't correct. It turns out that line-height may be specified without any units, in which case the computed value is the element's font-size multiplied by this number Oops J.D.