Center a VIDEO-Tag

by Andreas Burg

HTML

<div class="ce_player video-wrapper block">
  <video width="373" height="280" controls>
    <source type="video/mp4" src="files/meinvideo.mp4">
  </video>
</div>

CSS

.video-wrapper {
  width: 580px;
  margin: 0 auto;
  background-color: tomato;
}
video {
  display: block;
  margin: 0 auto;
}