How to center an iframe horizontally?

Add display:block; to your iframe css.

div, iframe {
    width: 100px;
    height: 50px;
    margin: 0 auto;
    background-color: #777;
}

iframe {
    display: block;
    border-style:none;
}
<div>div</div>
<iframe src="https://stackoverflow.com/questions/8366957/data:,iframe"></iframe>

Leave a Comment