You can remove that by using focus pseudo element in CSS. Then make outline value - none.
See below example-
video:focus{
outline:none;
}
Some people may search - "How to remove border from video player when focused on it" because they think that is border but not, it is outline.
Publish A Comment