I wanna make video style just like this... (curve)
I tried to search & think how to performance this but i couldn't find it?
Is there anyone who can help me?
Thank you..
I wanna make video style just like this... (curve)
I tried to search & think how to performance this but i couldn't find it?
Is there anyone who can help me?
Thank you..
Unfortunately, Chrome and Safari do not support border-radius on elements. But If you create a div container with rounded corners and overflow hidden, and then place the video in it. it will be right.
<style>
.video-div{
width: 350px;
border-radius: 10px;
overflow: hidden;
}
</style>
<div class="video-div">
<video></video>
</div>