How to auto adjust the div size for all mobile / tablet display formats?

后端 未结 9 980
一个人的身影
一个人的身影 2020-12-07 11:36

I have designed a page where four div tags are there in the page. If I test the page in mobile phone (5 inch) it fits the page perfectly, If I test the same pag

9条回答
  •  旧巷少年郎
    2020-12-07 12:38

    I use something like this in my document.ready

    var height = $(window).height();//gets height from device
    var width = $(window).width(); //gets width from device
    
    $("#container").width(width+"px");
    $("#container").height(height+"px");
    

提交回复
热议问题