Resizing
While you just learned ways to modify the <frameset> tag, you can also modify the <frame> tag. Two of the ways you can modify the frame is to either allow or disallow resizing and allow or disallow scrolling. It's time for the resizing to begin.
RESIZING:
In the frames that have been made so far, you can resize the frame by clicking on and sliding the border of the frame. Go ahead and try it on this old frame.
To "lock" the frames in place so they can't be moved, you need to add a command to the <frame> command. Easily enough, that command is NORESIZE.
Here's an example:
- <html>
<head></head>
<frameset cols="20%,*">
<frame src="cool.html" name="contents" noresize>
<frame src="fuzzy.html" name="main" noresize>
</frameset>
</html>
And here is the set of frames you just saw above with the noresize in place.Click here to see it