答案 0 :(得分:1)
我已经在堆栈流本身中找到了答案,解决方案是使用Java脚本设置网页的大小。
$(document).ready(function() { // Wait for the HTML to finish loading.
var resize = function() {
var height = $(window).height(); // Get the height of the browser window area.
var element = $("body"); // Find the element to resize.
element.height(height); // Set the element's height.
}
resize();
$(window).bind("resize", resize);
});