English 中文(简体)
栏顶高度
原标题:frameset column height
  • 时间:2009-10-12 08:26:20
  •  标签:

i want to create a page with frame set first i divide the page in 3 rows. In second row i divide it by 2 coloumns. My problem is that first column of the second row contain lot of content(a full screen height), so there is a scroll bar , I want to show all the content without scrolling..., is it possible ??? can i give height to the column ????

最佳回答

我猜想你有这样的框架:

<frameset rows="100,*,80">
  <frame src="f1.htm"/>
  <frameset cols="120,*">
    <frame src="left.htm"/>
    <frame src="right.htm"/>
  </frameset>
  <frame src="f2.htm"/>
</frameset>

它将研究这样的情况:

________________________
| f1.htm               |
|______________________|
|          |           |
| left.htm | right.htm |
|__________|___________|
| f2.htm               |
|______________________|

如果你想用左.htm填补窗户的顶峰,你需要为此进行改组:

<frameset cols ="120,*">
  <frame src="left.htm"/>
  <frameset rows="100,*,80">
    <frame src="f1.htm"/>
    <frame src="right.htm"/>
    <frame src="f2.htm"/>
  </frameset>
</frameset>

它将研究这样的情况:

________________________
|          | f1.htm    |
|          |___________|
| left.htm |           |
|          | right.htm |
|          |___________|
|          | f2.htm    |
|__________|___________|
问题回答

一、导 言

<frameset blabla height="*">

Bobby





相关问题
热门标签