paulirish / lite-youtube-embed

A faster youtube embed.
https://paulirish.github.io/lite-youtube-embed/
Other
5.68k stars 260 forks source link

Centering the video element doesnt work #121

Closed erikdemarco closed 4 months ago

erikdemarco commented 2 years ago

I want to center this video element created by lite-youtube-embed but it doesnt work, sometimes the video is gone. I also try bunch of css here, still no success: https://stackoverflow.com/questions/114543/how-to-horizontally-center-an-element

Any suggestion to center this video element responsively?

Wayneb4788 commented 1 year ago

I have the same issue. I have tried various options including editing the CSS to horizontally center the embed but I am unable to make it work.

tombo-coys commented 5 months ago

I have acheived this by removing the max-width value that is set on the custom element, which allows the video element to fill the parent.

Not quite centering the element itself, but it works in my case.

.wrapper > div > lite-youtube { max-width: unset; }

paulirish commented 4 months ago

Thanks @tombo-coys