Title: Frame Border
URL: http://www.activejump.com/k-2.shtml
Email: webmaster@activejump.com

Introduction

The frame border is what separates different frames on a web page. You are able to modify the appearance of the border, giving you more control over your web pages.
Border Width
To change the width of the borders on your page, insert the line BORDER="#" into the <FRAMESET TYPE="XX,XX"> tag so the final result looks like this.

<FRAMESET TYPE="XX,XX" BORDER="#">

# is replaced with the desired width of the border.

index.html - Notepad
....<HEAD>

<FRAMESET ROWS="50%,50%" BORDER="20">
<FRAME SRC="http://www.web-page-1.com" NAME="page1">
<FRAME SRC="http://www.web-page-2.com" NAME="page2">
</FRAMESET>

</HEAD>....

Frame Example: Border Width

Border Color
To change the color of the borders on your page, insert the line BORDERCOLOR="#XXXXXX" into the <FRAMESET TYPE="XX,XX"> tag so the final result looks like this.

<FRAMESET TYPE="XX,XX" BORDERCOLOR="#XXXXXX">

XXXXXX is replaced with the color code that you want. If you would like a floating window of the color chart, please click here.

index.html - Notepad
....<HEAD>

<FRAMESET ROWS="50%,50%"
BORDERCOLOR="#0000FF">
<FRAME SRC="http://www.web-page-1.com" NAME="page1">
<FRAME SRC="http://www.web-page-2.com" NAME="page2">
</FRAMESET>

</HEAD>....

Frame Example: Border Width