Youtube video corner radius

Hi,

A small question, but if I want to put a radius on a YT video, how can I make this possible? The default options don’t do anything on the video itself, only on the border.

Thank you.

You could cheat this by wrapping the video in a div, setting the border radius on it and setting the overflow to hidden. Or you can set it on the custom CSS, either on the div or on the video itself, e.g

border-radius: 13px; /* Insert any value you want */
overflow: hidden; /* This is optional, depends on how it behaves after setting the border radius */
1 Like

:pray: Amazing. Thank you very much.

1 Like