HTML5からサポートされたvideoタグの中央揃え。
margin:0 auto
やtext-align:center
が効かなくて困ったが、なるほどブロック要素になっていない。
ブロック要素にし、classで指定してあげるとうまくいった。
hoge.html
<div class="hoge">
<video src="hoge.mp4" controls="controls" poster="fuga.png"></video>
</div>
fuga.css
.hoge{
text-align:center;
}