[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
HTMLSPEC-FRAME
Used to specify a web document to be rendered in a frame cell division.
Attributes
Specifies the URL of the web document to be placed inside the current frame cell.
Declares a name for the current frame cell so <a>, <base>, <area>, and <form> can use their target="" attribute to render documents in the cell.
Specifies whether frame cells will have borders; 1 (default) representing show borders; 0 no borders; also overrides <frameset> info.
Specifies left and right margins of the cell represented by #.
Specifies top and bottom margins of the cell represented by #.
Specifies whether scroll bars will be displayed if needed; "yes" represents use scroll bars, "no" represents no scroll bars.
Disables visitor ability to resize frame regions.
Live Example
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
HTMLSPEC-FRAME
Frame
UsageUsed to specify a web document to be rendered in a frame cell division.
Attributes
src="URL"
Specifies the URL of the web document to be placed inside the current frame cell.
name=""
Declares a name for the current frame cell so <a>, <base>, <area>, and <form> can use their target="" attribute to render documents in the cell.
frameborder="#"
Specifies whether frame cells will have borders; 1 (default) representing show borders; 0 no borders; also overrides <frameset> info.
marginwidth="#"
Specifies left and right margins of the cell represented by #.
marginheight="#"
Specifies top and bottom margins of the cell represented by #.
scrolling=""
Specifies whether scroll bars will be displayed if needed; "yes" represents use scroll bars, "no" represents no scroll bars.
noresize
Disables visitor ability to resize frame regions.
Live Example
<html> <head><title>Frame Document Example</title></head> <body> <frameset cols="20%, *"> <frame src="frame1.htm" name="contents" noresize> <frame src="frame2.htm" name="pageinfo" noresize> </frameset> </body> </html>
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
