HTML
<video [src]='videoURL' controls #videoPlayer (ended)="onVideoEnd($event)"
[style.maxHeight]="screen.data.height">
<track label="English subtitles" kind="subtitles" srclang="en"
[src]="screen.data.ccs"/>
</video>
CSS
video {
width: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Would anyone be able to shed some light as to why the Captions and Download button is positioned where it is in the screenshot above, It was positioned correctly so i'm wondering, did google chrome update which has caused something or am i just going mental haha.
I have so far looked into shadow-doom elements but with no success in returning the buttons to their original position.
I'm also interested if others have had a similar problem and if any workarounds/solutions have been found, i am for the purpose of my project not allowed to create any custom controls for the video player so if that was a possible solution it is out :(
Any help will be greatly appreciated, thanks to everyone in advance. :)
Browser is chrome.