Search code examples
htmlyoutubecenter

With HTMl5 how do I center a embedded YouTube video and center it?


I tried things like text align and center tags... Can anyone help?

Thanks - Max


Solution

  • Add the following CSS property to your iframe and:

    Demo on Fiddle

    iframe {
        display: block;
        margin: auto;
    }