[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
HTMLSPEC-IFRAME
Used to specify an "inline" frame within an HTML document. Normal frames are located in a fixed web browser position, but "inline" frames are located in a fixed HTML document position. "inline" frames scroll with the web documents like other block or text-level elements.
Attributes
Specifies the URL of the web document to be placed as the "inline" document.
Specifies the width in pixel values of the "inline" frame. May be omitted for automatic browser dimensioning.
Specifies the height in pixel values of the "inline" frame. May be omitted for automatic browser dimensioning.
Specifies the alignment of the "inline" frame with respect to surrounding elements.
Declares a name for the "inline" frame to used as a normal frame "target" value.
Specifies whether a border will be applied to the "inline" frame. (1=border, 0=no border, default=1)
Specifies in pixels the size of the left and right "inline" frame margins.
Specifies in pixels the size of the top and bottom "inline" frame margins.
Specifies whether scroll bars will be displayed if needed; "yes" represents use scroll bars, "no" represents no scroll bars.
Live Example
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
HTMLSPEC-IFRAME
IFrame
UsageUsed to specify an "inline" frame within an HTML document. Normal frames are located in a fixed web browser position, but "inline" frames are located in a fixed HTML document position. "inline" frames scroll with the web documents like other block or text-level elements.
Attributes
src=""
Specifies the URL of the web document to be placed as the "inline" document.
width="#"
Specifies the width in pixel values of the "inline" frame. May be omitted for automatic browser dimensioning.
height="#"
Specifies the height in pixel values of the "inline" frame. May be omitted for automatic browser dimensioning.
align="left | center | right | top | middle | bottom"
Specifies the alignment of the "inline" frame with respect to surrounding elements.
name=""
Declares a name for the "inline" frame to used as a normal frame "target" value.
frameborder=""
Specifies whether a border will be applied to the "inline" frame. (1=border, 0=no border, default=1)
marginwidth="#"
Specifies in pixels the size of the left and right "inline" frame margins.
marginheight="#"
Specifies in pixels the size of the top and bottom "inline" frame margins.
scrolling=""
Specifies whether scroll bars will be displayed if needed; "yes" represents use scroll bars, "no" represents no scroll bars.
Live Example
<html> <head><title></title></head> <body> <p>Introduction</p> <br> <p>Company Support</p> <iframe src="support.htm" scrolling="no" name="support"></iframe> </body> </html>
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
