背景与html和身体100%高度切断

Osu*_*Osu 1 html css height document-body

由于某些原因,我不能让html和身体拥有100%的高度,我正在试着找出原因.我正在使用以下代码并搜索了Web和Stackoverflow以获得答案,但似乎没有任何工作:

html, body {
  height: 100%;
  min-height: 100% !important;
  width:100%;
  padding:0;
  margin:0;
  line-height:normal;
}
Run Code Online (Sandbox Code Playgroud)

这是一个现场演示:

http://dev1.onesizeup.com/

知道发生了什么事吗?

Jos*_*kle 7

设置height: 100%html部队的高度要视口的(导致该截止).尝试将html高度设置为规则autohtmlhtml, body规则中删除.