2012-09-18 32 views
0

我的index.html包含下面的代碼:index.html的行爲不

<!DOCTYPE html> 
<html> 
    <head> 
     <title>Index Page</title> 
    </head> 
    <body id="bd" style="border:2px solid yellow;width:100%;height:100%"> 

     <div id="toolHome" class="toolbar" style="postion:fixed;height:40%;top:0;border:2px solid green;width:100%"> 
      <div id="div1" style="width:28%;float:left" onclick="edit()">Edit</div> 
     </div> 

    </body> 
</html> 

div id="toolHome"保持體內,但身體並沒有佔據整個空間。我已經嘗試給身體標籤100%的高度,100%的寬度。我不知道爲什麼會發生這種情況。頭部沒有其他文件。

回答

0

Demo

嗨現在給html and body height:100%;

像這樣

html, body{ 
height:100%; 
} 

Demo Live

+0

感謝您的即時回覆@rohit – clint