centrer une vidéo horizontalement
/*option 1:this makes the video responsive*/
.videoDiv
{
width: 70%; /*or whatever % you prefer*/
margin: 0 auto;
display: block;
}
/* option 2* does not make the video responsive*/
.videoDiv{
margin:0 auto;
display: block;
}
Witty Wildebeest