JSFiddle - React, Tailwind, and code Playground

by Douglas Duhaime

HTML

<div class="video-container">
  <video autoplay>
      <source src="http://clips.vorwaerts-gmbh.de/VfE_html5.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
      Video not supported.
  </video>
</div>

CSS

.video-container {
  position: absolute;
  top: 100px;
  left: 100px;
}

video {
  height: 100%;
  position: absolute;
  z-index: 1;
}