I can’t seem to center this video element in this page I’ve been messing around with:
HTML
<div id="container">
<video id="vid" x-webkit-airplay="allow" controls width="640" height="360" src="http://ec2-184-72-239-149.compute-1.amazonaws.com:1935/demos/smil:bigbuckbunnyiphone.smil/playlist.m3u8"></video>
</div>
CSS
#vid {
margin: 0 auto;
}
You can view the code online here at jsfiddle. Why isn’t my <video> element centering itself?
add a
display: blockto your#vid