Margins
Marginwidth
You can set how much "padding" is around your text or document by setting the marginwidth. This command falls inside the <frame> command. Let's suppose you want a huge amount of padding in one frame and nearly no padding in another frame. Here's what that would look like:
- <html>
<head></head>
<frameset cols="50%,*">
<frame src="cool.html" MARGINWIDTH=1>
<frame src="cool.html" MARGINWIDTH=50>
</frameset>
</html>
That code produces this page.
Frameborder
You can specify whether a certain frame will have a border or not. This is very similar to the "frameborder=no" command found in the <frameset> tag, but this only designates the frame you tell it to. Here's an example of the code:
- <html>
<head></head>
<frameset cols="33%,33%,*">
<frame src="cool.html" FRAMEBORDER=YES>
<frame src="cool.html" FRAMEBORDER=NO>
<frame src="cool.html" FRAMEBORDER=NO>
</frameset>
</html>
That code produces this page.