将DIV拉伸到页面宽度

时间:2012-05-22 14:52:35

标签: html css internet-explorer internet-explorer-7

我需要一个div来扩展到HTML文档的整个页面宽度,具体取决于它的内容。

以下是该方案:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0  Traditional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>testing</title>
<style type="text/css">
body
{
background-color:pink;
padding:0;
margin:0;
}
#testDiv
{
background-color:red;
}
</style>
</head>

<body>
<div id="testDiv">
<table width="2000px">
<tr>
<td>
test
</td>
</tr>
</table>
</div>
</body>

</html>

testDiv只会扩展到浏览器窗口的大小,而不会扩展到整个页面本身。我已经将这种行为用于表格布局,但我更希望有人能提供CSS解决方案。我还需要适用于IE 7的解决方案。

2 个答案:

答案 0 :(得分:2)

要扩展到<div>内的内容大小,只需将display规则设置为inline-block,对于IE7,您还必须包含几个黑客。

Example

<!DOCTYPE html>
<html>
   <head>
     <title>testing</title>
     <style type="text/css">
       body
       {
         background-color:pink;
         padding:0;
         margin:0;
       }
       #testDiv
       {
         background-color:red;
         display: inline-block;
         /* IE 7- hacks */
         zoom: 1;
         *display: inline;
       }
      </style>
   </head>
   <body>
     <div id="testDiv">
       test
       <div style="width: 2000px"></div>
     </div>
   </body>
</html>

答案 1 :(得分:0)

试试这个。 :)

html {width: 100%; height: 100%; padding: 0; margin: 0;}
body {width: 100%; height: 100%; position: relative; padding: 0; margin: 0;}
#testDiv {width: 100%; height: 100%; position: absolute; top: 0; left: 0;}