我有一个 HTML 页面,我将正文添加为 100% 但是当我最小化浏览器时,滚动正文仍然保持在最小化的相同状态。
问问题
60 次
2 回答
3
我一定要试试这个,
html, body{
margin:0;
padding:0;
min-width: 1140px; /* this is the important part*/
}
于 2013-06-22T05:39:47.053 回答
1
试试这个?我认为你的标题 div 也需要这个 css。
html, body {
float:left;
width:100%;
height:100%;
margin:0;
padding:0;
}
#yourHeader{
float:left;
width:100%;
/*
height:150px; bla bla...
*/
}
于 2013-06-22T05:39:54.120 回答