Centre a video

Associate
Joined
28 Dec 2005
Posts
112
Location
Greenhithe, Kent
Hello,

I've got the code below to put a video onto my website. Would anyone be able to tell me what I need to add so that it's centered horizontally on the page please?

HTML:
<video width="720" height="720" playsinline autoplay loop muted>
<source src="dm1.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
 
Permabanned
Joined
9 Aug 2009
Posts
12,234
Location
UK
I'd probably wrap it:
Code:
<div style="width:100%; text-align:center">
   <video width="720" height="720" playsinline autoplay loop muted>
       <source src="dm1.mp4" type="video/mp4">
       <source src="movie.ogg" type="video/ogg">
       Your browser does not support the video tag.
   </video>
</div>
 
Back
Top Bottom