Hey I am working with HTML tags and when I open the page in Safari the video player is very small.
If I enable full screen and then go back it is focused correctly.
I am not sure what is causing it to load incorrectly initially.
HTML Code:
<div id="AboutVideo">
<video width="100%" height="100%" controls>
<source src="../Media/Video/Intro/test.mp4" type="video/mp4" />
<source src="../Media/Video/Intro/test.ogv" type="video/ogg" />
<source src="../Media/Video/Intro/test.webm" type="video/webm">
</video>
</div>
About Video:
#AboutVideo
{
float: left;
margin-right: 1em;
}
Any help would be great.