0

这是我的示例代码

<div id="one">
height based on screen 

     <div id="two">
      height based on id="one"
       <div>
          height based on id="two"
       </div> 
     </div>"

</div>
4

3 回答 3

0
html, body { height:100%; }
#one { height:some%; }
#two { height:some%; }

CSS - 这里不需要 JS(除非你以后想改变高度)。

于 2013-08-02T09:28:04.997 回答
0

只需$(this).parent().height();用于每个div

于 2013-08-02T09:28:37.670 回答
0

以 % 为单位设置高度和宽度。它将采用父 div 的高度和宽度。

于 2013-08-02T09:28:38.407 回答