Skip to content

Instantly share code, notes, and snippets.

@rhatano
Created February 26, 2012 16:04
Show Gist options
  • Save rhatano/1917469 to your computer and use it in GitHub Desktop.
Save rhatano/1917469 to your computer and use it in GitHub Desktop.
Frames
<frame>
*// Defines a single frame. A frame contains yet another HTML document within a HTML document. This tag needn't be closed.
<frame> attributes:
<frame src="URL">
*// Specifies which HTML document should be displayed. It can be a external or local source.
<frame name="name">
*// Names the frame, or region, so it may be targeted by other frames
<frame marginwidth="x">
*// Defines the left and right margins of the frame; x must be equal to or greater than 1
<frame marginheight="x">
*// Defines the top and bottom margins for the frame; x must be equal to or greater than 1
<frame scrolling="value">
*//Sets whether the frame has a scrollbar; value may be “yes,” “no,” or “auto.” The default, as in ordinary documents, is auto.
<frame noresize="noresize">
*// Prevents the user from resizing a frame. Used if other parts of the document are sized deliberately.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment