Glubase - share your knowledge


All / Computers / Programming / HTML / XHTML





  • View Command

HTML / XHTML Reference

HTML / XHTML frame definition

Browser support
IEFFOpSaf
FullFullFullFull

Type: frame element

Syntax

<frame> ... </frame>

Description

Thie element is deprecated. It defines a frame or window inside a frameset that can contain separate documents.

Attributes

Attribute Description
name = cdata Name of the frame.
src = uri URI to the content of the frame.
longdesc = uri URI to a long description of the frame.
frameborder Frame border
marginwidth = pixels Defines how many pixels the margin width should be.
marginheight = pixels Defines how many pixels the margin height should be.
noresize Defines if resizing the frame should not be allowed.
scrolling

Defines if the frame should be scrollable. These values are possible:

  • yes
  • no
  • auto

Common attributes.

Example

<frameset cols="50%,50%,*">
  <frame src="http://glubase.com" />
  <frame src="http://google.com" />
</frameset>

  • Comments

No comments added.