此网页处于测试阶段,http://porkystuff.com,存在一个非常大的问题。
网页大于BODY和HTML标记。我已经使用Chrome和Firefox中的开发人员工具进行了检查。
我尝试添加html, body{ height:100%; }
。
答案 0 :(得分:2)
得到了!!在CSS中,类名sidecontent高度为150%。
.sidecontent {
position: absolute;
width: 180px;
height: 150%;
left: 820px;
top: 50px;
}
答案 1 :(得分:1)
在我的情况下,我只需要通过以下CSS技巧将body
和html
标签扩展到全页大小:
html {
min-height: 100% !important;
}
body {
min-height: 100vh !important;
}
参考链接:https://makandracards.com/makandra/39473-stretching-an-html-page-to-full-height