For the life of me, I cannot figure out why the code at http://www.moosecodes.com works on Safari and Chrome but when I open it with Firefox the browser doesn’t recognize any of the line breaks!
i.e. <br/>
I have a suspicion that it is because I haven’t declared a doctype, but its just a regular old run line break that isn’t being interpreted. Anyone know the answer?
EDIT: To see what I mean, go to the site and click on "resume" then click on "Experience" or "Research"

(source: moosecodes.com)
You have everything on your page set to
position: absolutewith the following CSS.That’s a very bad universal style to have, only apply
position: absoluteto what you need it applied to and it’ll fix your<br />problem (and probably others too!). or you could target the<br />directly to set it back to default.