how can I remove the black background from a html5 video? It appears for a few seconds while loading. Using CSS didn't work.
The HTML:
<div id="start-screen">
<video id="video-element">
<source src="video-mp4.mp4" type="video/mp4">
<source src="video-oggtheora.ogv" type="video/ogg">
</video>
</div>
The CSS (not working):
#start-screen, video-element {
background-color: #fff !important;
}
Thanks!