我在使用frameset时希望显示时的高度比屏幕的高度大一些,可是不论我怎么设置都不行,打开时显示刚好是屏幕的高度,电脑分辨率是1024*768,下面是我的代码:
<frameset rows="90,800,30" framespacing="0" frameborder="no" scrolling="auto" border="0">
请各位指点一下!

解决方案 »

  1.   

    楼主可以试一试frameset rows=35%,35%,35%,我没有试过这种方法,关注
      

  2.   

    frameset rows="90,800,30" 代表你三个frame,第一个的高度是90行,第二个800行,第三个是30,要显示frameset中总体的框架通过style="height:10000px"这样来设置
      

  3.   

    rows有三种类型的值
    高度值
    height Integer that specifies the frame height, in pixels.百分比
    percentage Integer, followed by a %. The value is a percentage of total available height. 值加一个*
    height* Integer that specifies the frame height as a relative value. After allocating pixel or percentage values, the remaining space is divided among all relative-sized frames.