I am building a website in XHTML and having problems with spacing. Firefox is
rendering my paragraphs with greater line-height than I need. I messed around
with the CSS for hours and finally figured out that the problem is caused by my
DOCTYPE.

I am currently using:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

Changing the doctype to transitional resolves the problem. Does anyone know
why? Is there a solution to this that will allow me to keep the strict doctype?

Thanks!