Generally it is suggested to center iframe content with align="center" attribute. But surprisingly, I failed to center my videos like that. After several trials and errors I’ve come up with the following solution:
Code
<div style="text-align: center;">
<iframe>content</iframe>
</div>
Alternatively you can use the below code as well:
<center>
<iframe>content</iframe>
</center>
