1

我需要一个 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 的解决方案。

4

2 回答 2

2

<div>要在刚刚设置的display规则中拉伸到内容的大小inline-block,对于 IE7,您还必须包含一些技巧。

例子

<!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>
于 2012-05-22T15:00:36.873 回答
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;}
于 2012-05-22T14:56:57.967 回答