Answers for "center a video css"

CSS
4

html center video

video {
    margin-left: auto;
    margin-right: auto;
    display: block
}
Posted by: Guest on May-08-2020
0

center a video horizontally

/*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;
}
Posted by: Guest on August-20-2020

Browse Popular Code Answers by Language