宽度适合100%不工作

时间:2013-06-22 05:31:20

标签: jquery html css

我有一个HTML页面,我将body添加为100%但是当我最小化浏览器并且滚动体仍然保持在最小化的同一状态。 enter image description here

2 个答案:

答案 0 :(得分:3)

我确定试试这个,

html, body{
    margin:0;
    padding:0;
    min-width: 1140px; /* this is the important part*/
}

答案 1 :(得分:1)

试试这个?我认为你的标题div也需要这个css。

html, body {
    float:left;
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}
#yourHeader{
    float:left;
    width:100%;
    /*
    height:150px; bla bla...
    */
}