THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML <frame> marginheight Attribute

HTML frame Tag Reference HTML <frame> tag

Example

The first frame with a top and bottom margin of 50 pixels, and the second frame with a top and bottom margin of 0 pixels:

<frameset cols="50%,50%">
  <frame src="frame_a.htm" marginheight="50">
  <frame src="frame_b.htm" marginheight="0">
</frameset>
Try it yourself »

Definition and Usage

The <frame> tag is not supported in HTML5.

The marginheight attribute specifies the height between the content and the top and bottom of the frame, in pixels.


Browser Support

Attribute
marginheight Yes Yes Yes Yes Yes

Syntax

<frame marginheight="pixels">

Attribute Values

Value Description
pixels Specifies the top and bottom margins of a frame

HTML frame Tag Reference HTML <frame> tag