One of the hacky solution around, you can apply custom css style for specific MS Edge to stretch the video a little bit in order to cover the height or width. You can play around with scaleX or scaleY. Below is the sample code for MS Edge.
@supports (-ms-ime-align:auto) {
.video {
transform: scale(2);
}
}
-
This reply was modified 4 years, 5 months ago by sovich.