Mix rows and columns in a frameset
Description:
How to mix rows and columns in a frameset.
Code:
<html>
<frameset rows="50%,50%">
<frame src="frame_1.html">
<frameset cols="30%,70%">
<frame src="frame_2.html">
<frame src="frame_3.html">
</frameset>
</frameset>
</html>
Play with the code:
See working example:
Explanation:
To combine horizontal and vertical frames you just have to replace a frame with a frameset.
See Also:
HTML: Html, Frame, Frameset
|