After researching extensively on this solution, I am still unable to resolve the issue. My goal is to display a video with full width and a custom height of width='100%' height='100px'
.
<div class="row">
<div class="video-container">
<video preload="auto" loop="" autoplay="" muted="" width="700px" height="50px">
<source src="/uploads/MDclouds3-sunset.webmhd.webm"
type="video/webm">
<source src="/uploads/MDclouds3-sunset-H.264-for-VP.m4v"
type="video/mp4">
</video>
</div>
</div>
Could someone please advise me on how to achieve this? Thank you in advance.