3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

videoタグで指定した動画の中央揃え

Posted at

HTML5からサポートされたvideoタグの中央揃え。
margin:0 autotext-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;
}
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?