CSS Snippets

Center an iframe

Tags: layuot

Code

<style>
iframe.centered {
    display: block;
    margin: auto;
}
</style>

<iframe class="centered" width="100%" height="500" src="https://www.raymondcamden.com"></iframe>

Output