Just getting started with bootstrap and css. I'm trying to insert a video element into a row class and want it to be positioned at the top left of the row without any margins. Currently, the video is centered vertically with space above it.
Ideally, I would like the row's height to match that of the video element. Any suggestions or tips would be appreciated.
<div class="container">
<div class="row" style="height: 100%;">
<video id="video1" autoplay muted style="width:70%;border:2px;position: relative;top: 0%;"></video>
</div>
</div>