I'm trying to display a full-screen iframe but the height of my website seems to be stuck at 155px; When I removed the doctype, it was magically fixed!
Try it with and without the doctype declaration:
<!DOCTYPE html>
<html>
<body>
<iframe src="http://example.com" style="border: 0; width: 100%; height: 100%"></iframe>
</body>
</html>
Why does this happen and how can I get a full-screen body while keeping the HTML 5 doctype declaration?