CSS Portal

HTML <frameset> Tag

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!

This tag is not supported in HTML5

Description

The <frameset> tag is used to separate the window into frames. For example, you can have a left frame for navigation and a right frame for the main content.

Properties

Permitted Parents
-
Content
<frameset>, <frame>, <noframes>
Start/End Tags
Start tag: required, End tag: required

Example

<frameset cols="25%,*,25%">
<frame src="frame_a.php" />
<frame src="frame_b.php" />
<frame src="frame_c.php" />
</frameset>

Attributes

Attribute Definition
rows Specifies the number of rows and their height in either pixels, percentages, or relative lengths. Default is 100%
cols Specifies the number of columns and their width in either pixels, percentages, or relative lengths. Default is 100%
class Specifies a classname for an element.
id Specifies a unique id for an element.
title Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip").
style Specifies an inline style for an element.

Global Attributes

None

Event Attributes

None

Browser Support

The following information will show you the current browser support for the HTML <frameset> tag. Hover over a browser icon to see the version that first introduced support for this HTML tag.

Browser support for this tag is currently unknown.
Desktop
Chrome
Edge
Firefox
Opera
Safari
Tablets & Mobile
Chrome Android
Firefox Android
Opera Android
Safari iOS
Samsung Internet
Android WebView
-

Last updated by CSSPortal on: 6th December 2019

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!