-1

如何将页面“划分”为一系列 iFrame 并以这种方式定位它们:http: //img81.imageshack.us/img81/4605/layoutew.jpg其中每个“框”都是可滚动的 iFrame,在我的例子中,在第一个左上角窗格中包含“流派”的可滚动列表,然后在中间窗格中包含“作曲家”等。(注意:这只是我遇到问题的 iFrame 定位,我是对列表等进行编码很好。我只是指出它们是为了给我的问题添加一些上下文)。

4

1 回答 1

-1

http://www.w3.org/TR/html4/present/frames.html

div                { padding:0;margin:0; }
.container         { position:relative; width:100%; height:100%;  }
.topcontainer      { height:45%; }
.box               { float:left; width:33%; padding:5px;  }
.bottom            { height:55%;  }

 <div class="container">
     <div class="topcontainer">
        <div class="box">content</div>
        <div class="box">content2</div>
        <div class="box">content3</div>
     </div>
     <div class="bottom">Yille!</div>
 </div>
于 2009-11-22T17:25:09.840 回答