I\'m using the following script to make my web app go fullscreen...
function enterFullscreen(){
var element = document.getElementById(\'container\');
the main solution didn't work to me :-( I found another solution, but yes, in the css:
:-webkit-full-screen, :fullscreen, :-ms-fullscreen, :-moz-full-screen {
position: fixed;
width: 100%;
height: 100%;
top: 0;
background: none;}
I understand this is for the position of my elements, but I no sure. Hope help to somebody. Bye and thanks.