Why does an iframe add extra space under its element? Look at this weird behavior:
iframe is an inline element. This takes whitespace in your HTML into account. display:inline-block is notorious for being difficult.
iframe
display:inline-block
Add display:block; to the CSS for your iframe.
display:block;