Wie zentriere ich einen Iframe horizontal?

Betrachten Sie das folgende Beispiel: ( Live-Demo ) HTML: <div>div</div> <iframe></iframe> CSS: div, iframe { width: 100px; height: 50px; margin: 0 auto; background-color: #777; } Ergebnis: Warum iframeist das nicht zentral ausgerichtet wie das div? Wie könnte ich es zentral...