Creating a nested frameset

Splitting an existing frame creates a new frameset inside the current frameset file. A frameset inside another frameset is called a nested frameset.

To create a nested frameset:

1 Place the cursor within an existing frame.
2 Choose Modify > Frameset > Split Frame Up, Down, Left, or Right.

You can also Alt-drag (Windows) or Option-drag (Macintosh) a frame border into the Document window to split the frame vertically or horizontally.

To view the HTML code, select the parent frameset by clicking a frame border and then open the HTML inspector. The code looks something like this:

<frameset cols="207,397">
    <frame src="file:///C|/SITEROOT/UntitledFrame-2" name="Left">
    <frameset rows="270,268">
          <frame src="file:///C|/SITEROOT/UntitledFrame-3" name="TopRight">
          <frame src="/temp.htm" name="BottomRight"> 
    </frameset> 
</frameset>

You can see how the new frameset is indented within the parent frameset.