Is there another way to center the youtube videos on the page? margin: 0 auto; is not centering
Hi!
Try adding display: block;
"margin: 0 auto; text-align: center; display: block;"
Best regards,
Josue
Thank you it works perfect.
can I assign that for iframes in custom css
Assign it a class:
<iframe class="centered_iframe">..</iframe>
Then:
.centered_iframe{
margin: 0 auto;
display: block;
}
Best regards,
Josue