全屏显示html页面

时间:2014-05-15 17:25:55

标签: html css

这是我的html网站https://dl.dropboxusercontent.com/u/168659703/kappe/without_sidebar/index.html

目前它不适合全屏。我无法理解它是如何计算屏幕的高度的。我希望它适合全屏。这意味着没有水平滚动条。请告诉我该怎么做?

2 个答案:

答案 0 :(得分:1)

body
{
 position:fixed;
 top:0;
 left:0;
 right:0;
 bottom:0;
 width:100%;
 height:100%;
}

答案 1 :(得分:0)

你可以使用这样的东西,

body
{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
}