Set div height equal to screen size

后端 未结 6 1605
情深已故
情深已故 2020-11-30 02:10

I have a div element in twitter-bootstrap which will have content that will overflow vertically outside the screen.

I would like the div to take the height of the si

6条回答
  •  抹茶落季
    2020-11-30 02:53

    try this

    $(document).ready(function(){
        $('#content').height($(window).height());
    });
    

提交回复
热议问题