How to center an iframe horizontally?
Consider the following example: ( live demo ) HTML: <div>div</div> <iframe></iframe> CSS: div, iframe { width: 100px; height: 50px; margin: 0 auto; background-color: #777; } Result: Why the iframe is not centrally aligned like the div ? How could I centrally align it? Add display:block; to your iframe css. best way and more simple to center an iframe on your webpage is : <p align="center"><iframe src="http://www.google.com/" width=500 height="500"></iframe></p> where width and height will be the size of your iframe in your html page. HTML: <div id="all"> <div class="sub">div</div> <iframe>ss<