将div高度大小设置为等于帧大小高度

时间:2013-08-27 11:17:25

标签: html css

我在主要的单个html页面中显示3个html页面。 image

我正在使用frameset将所有3个页面显示在主页面中。首页包含一个放在div下的表(id = frame1)。我想将表的高度设置为等于顶部框架的高度(ResultDetails.html)。

<!DOCTYPE html>
<html>
   <frameset frameborder="1" rows="70%, *">
      <frame src="ProjectInfo/ResultDetails.html" name="Content"/>
      <html>
         <frameset frameborder="1" cols="50%, *">
            <frame src="ProjectInfo/ProjectDetails.html" />
            <frame src="ProjectInfo/VariableDetails.html" name="Content"/>
         </frameset>
   </frameset>
   </html>

对于div我正在使用以下css。

#frame1{float:left;width:70%;height:400px;overflow:auto;}

框架的高度可能因屏幕分辨率的不同而有所不同。我该如何解决这个问题。

0 个答案:

没有答案