How to center a video [closed]
To center an element, you will also have to style it’s parent element too. So let’s say, you video has a structure like this: <div class=”parent-class”> <video class=”wp-video”> </video> </div> To center the video, you will have to give it’s parent a width. Using: .parent-class{ width:100%; display:block; } Now, you can use this to do … Read more