akes406
akes406

Reputation: 531

html5 video tag unwanted border

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>

Video with Border

Upvotes: 2

Views: 1258

Answers (1)

Nidhin Joseph
Nidhin Joseph

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

Related Questions