|
发表于 2008-6-10 03:00:24
|
显示全部楼层
......
主要改了两处...问题只能解决一半,在下水平有限,实在想不出其它方法了...假如不准使用JS的话请54下面的代码...
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <head>
- <style>
- *{margin:0; padding:0; border:0;}
- body{background-color: #666;margin: 0px; text-align:center;}
- html,body{height:100%;}
- .clear{clear:both; height:0; overflow:hidden;}
- .webrim{float:left; width:10px; background:#FFFFFF}
- .divstyle{width:942px; height:1200px;
- background:#99CC00; margin:0px 8px 0px 8px;}
- </style>
- </head>
- <body>
- <div style="width:980px; height:100%; margin: auto;">
- <div style="height:100%" class="webrim"> </div>
- <div style="float:left; width:960px; background:#000;">
- <div id="content" class="divstyle">中间内容</div>
- </div>
- <script language="javascript">
- var h=document.getElementById("content").offsetHeight;
- document.write("<div style='height:"+h+"px'; class='webrim'> </div>");
- </script>
- <!--div class="webrim"> </div-->
- <div class="clear"></div>
- </div>
- </body>
复制代码 |
|