I'm trying to make a website which is similar to this https://www.netflix.com/in/title/80189221. I would like to know how to get the video in the middle of the page.
My code looks like this.
iframe {
width:240px;
height:160px;
align: middle;
}
I've also tried this:
iframe {
width:240px;
height:160px;
margin-left: auto;
margin-right: auto;
}
But nothing seems to be working.