Today I decided to start adding some HTML5 to a WordPress theme I'm developing. I replaced the old XHTML Transitional doctype with <!DOCTYPE html> and immediately experienced a small margin issue.
Take a look at the "Home" tab on this page:
http://www.darrenhoyt.com/demo/wordpres ... heme=Gravy
There is now a 3-4 pixel space below that tab, whereas with the old doctype it was flush with the bottom of the navbar. If I change the doctype back, the spacing is fixed.
In the past if I've forgotten a doctype, my pages have been throw into quirksmode in certain browsers, causing margin issues, but that's obviously not the case here.
Like I said, the only steps I've taken so far to get my theme to validate as HTML5 was to change the doctype. I haven't begun to add the nav, header, etc, tags.
Sorry if this is an obvious question. Thanks!