HTML <frame> marginwidth Attribute
Example
The first frame with a left and right margin of 50 pixels, and the second frame with a left and right margin of 0 pixels:
  
    <frameset cols="50%,50%">
  <frame src="frame_a.htm" marginwidth="50">
  <frame src="frame_b.htm" marginwidth="0">
 </frameset>
 
Try it Yourself »
Definition and Usage
The <frame> tag is not supported in HTML5.
The marginwidth attribute specifies the width between the content and the left and right sides of the frame, in pixels.
Browser Support
| Attribute | |||||
|---|---|---|---|---|---|
| marginwidth | Yes | Yes | Yes | Yes | Yes | 
Syntax
  
    <frame marginwidth="pixels">
Attribute Values
| Value | Description | 
|---|---|
| pixels | Specifies the left and right margins of a frame | 
❮ HTML <frame> tag

