Tutorial we split the window into several pieces, horizontally divide the Rows property, the cols attribute is used vertically, and the size of each block can be implemented by the values of the two properties.
<frameset cols=#> Case: <frameset cols= "100,200,300" >
<frameset rows=#> Case: <frameset rows= "10%,20%,70%" >
#的值为一对用引号括起来的字符串, the number in the string indicates the size of each window, separated by commas, and several digits indicating a few windows. Of course, any of these numbers can also be replaced by "*", which means that the browser automatically sets its size.
such as: <frameset cols= "100,200,*" >
<frameset cols= "100,*,*" > divide the window evenly beyond 100 pixels
<frameset cols= "*,*,*" > divides the windows into three equal portions
To arrange multiple windows vertically:
********************************
<frameset cols=30%,20%,50%>
<frame src= "frame/a.html" >
<frame src= "frame/b.html" >
<frame src= "frame/c.html" >
</frameset>
To arrange multiple windows horizontally:
********************************
<frameset rows=25%,25%,50%>
<frame src= "frame/a.html" >
<frame src= "frame/b.html" >
<frame src= "frame/c.html" >
</frameset>
To arrange multiple windows horizontally:
********************************
<frameset cols=20%,*>
<frame src= "frame/a.html" >
<frameset rows=40%,*>
<frame src= "frame/b.html" >
<frame src= "frame/c.html" >
</frameset>
</frameset>