Reputation: 531
I oddly have an unwanted purple border when clicking the play button on a html5 video that has native controls. How do I remove this border?
<div id="missionVideo" style="text-align: center;">
<video playsinline controls poster="posterurlhere">
<source src="videourlhere" type="video/mp4" />
</video>
</div>
Upvotes: 2
Views: 1258
Reputation: 10237
This can be the outline
that appears on selection. To full proof, remove outline
and border
.
video {
outline: none;
border: none;
}
Upvotes: 2