Place Scroll when in fullscreen

-2

I'm creating a page and it goes fullscreen, but I have a problem when I enter fullscreen the rest of the content that is "below" is not shown, it only appears to the limit of the monitor.

I'm trying to put a scroll bar with overflow , but I'm not getting it.

index.php

<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script><divid="meio" style="width:768px; margin:0 auto; overflow:auto;"></div>

<script type="text/javascript">
var estado = "";
  $(document).ready(

    function() { 
    var Oaltura = $(document).height(); //altura da página

    var altura = Oaltura + 250;

        $("#meio").css('height', altura+"px");
        $("#meio").load("menu.php"); 

    }

  );
</script>
    
asked by anonymous 24.07.2014 / 00:35

1 answer

0
.page {
overflow: scroll;
width: 100%
height: 100%
margin: 0 auto;
}

<div id="meio" class="page">
## CONTEUDO ##
</div>

try now

    
25.07.2014 / 06:24