ASP               DHTML               HTML               Javascript               Hourglass Web Design Hourglass Web Design


Frames

A page which summons other pages into one collaged document. Opens with <HTML> code

Beginning code, distributing window size <FRAMESET COLS=”60%,40%></FRAMESET>

Beginning code, distributing window size <FRAMESET ROWS=”20%,80%></FRAMESET>

But can combine COLS and ROWS frameset command to get a very segmented frame.

Border between frames, none <FRAMESET BORDER=”0”> Or FRAMESPACING.

Border, space between frames <FRAMESET BORDER=”5”> Or FRAMESPACING
            FRAMEBORDER is used instead of BORDER in Internet Explorer

Border with Color <FRAMESET BORDERCOLOR=”#000099”> Will also work in SRC code.

Content of frame <FRAME SRC=”page_a.html”> Code bracketed only by above code.

Margins: use MARGINHEIGHT and MARGINWIDTH w/i FRAME SRC code.

Navigation: create target for links <FRAME SRC=”page_a.html” NAME=”name”>

Re-Sizing of window, prevent <FRAME SRC=”page.html” NORESIZE=”yes”>

Scrollbar, canceled <FRAME SRC=”page.html” SCROLLING=”no”> Yes also works for yes.

Scrollbar, automatic appear/disappear <FRAME SRC=”page.html” SCROLLING=”auto”