search
HomeWeb Front-endHTML TutorialHow to use html frameset tag? Detailed explanation of html frameset tag attributes

html How to use frameset tag? Detailed explanation of the attributes of the html frameset tag. This article mainly describes the definition and usage of the html frameset tag, as well as the uses of the two attributes of the html frameset tag (with examples)

First of all, let us understand what html frameset is. Tag:

html Definition and usage of frameset tag:

frameset element can define a frameset. It is used to organize multiple windows (frames). Each framework has separate documentation. In its simplest application, the frameset element simply specifies how many columns or rows exist in the frameset. You must use cols or rows attributes.

html The role of the frameset tag:

Its role is to specify a frameset for organizing multiple frames and nested framesets.

The FRAMESET element is a container for FRAME elements. An HTML document can contain either a FRAMESET element or a BODY element, but not both.

If a user opens a Web folder in a frame and then clicks something in the Web folder, the clicked file or folder will replace the entire window. For example, suppose a page contains two frames, one pointing to a URL and the second pointing to a network drive. If the user clicks on a file or folder in the second frame, that frame activates the entire window's controls, including the first frame. For file types that the browser cannot handle, such as *.txt files, the corresponding application window will be opened.

Although Web folders are part of the file system hierarchy, this technology does not always represent the actual contents of the file system. A typical example is Network Neighborhood.

html The scope of use of the frameset tag:

This element is available in HTML in Microsoft® Internet Explorer 3.0 and in scripts in Internet Explorer 4.0.

Note: The

tag cannot be used together with the tag. However, if you need to add a tag for browsers that don't support frames, be sure to follow the tag pair within the <noframes> tag before you can use any of the familiar Label. <p><strong>HTML <frameset> tag example: </frameset></strong></p> <p>Simple three-frame page: </p><pre class='brush:php;toolbar:false;'>&lt;html&gt; &lt;frameset cols=&quot;25%,50%,25%&quot;&gt; &lt;frame src=&quot;frame_a.htm&quot; /&gt; &lt;frame src=&quot;frame_b.htm&quot; /&gt; &lt;frame src=&quot;frame_c.htm&quot; /&gt; &lt;/frameset&gt; &lt;/html&gt;</pre><p><strong>html Tips and comments for the frameset tag: </strong></p> <p>Tip: It is important to note that browsers allow users to manually resize the rows or columns of a single frame document, and thus change the relative proportion of each frame in the frame display. Unless you explicitly tell the browser not to do this. To prevent this, you can use the noresize attribute in the <frame> tag. </p> <p>Note: If you wish to validate a page that contains frames, make sure the DTD is set to "Frameset DTD". Read more about XHTML validation. </p> <p>Important: You cannot use the </p> tag with the <frameset></frameset> tag. However, if you need to add a <noframes> tag for browsers that don't support frames, be sure to place the tag within the tag! <p>html Optional attributes of the frameset tag: </p> <p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn//upload/image/223/354/882/1534468985971134.png?x-oss-process=image/resize,p_40" class="lazy" title="1534468985971134.png" alt="How to use html frameset tag? Detailed explanation of html frameset tag attributes"></p> <p><strong>html Standard attributes of the frameset tag: </strong></p> <p>id, class, title, style</p> <p><strong>Cols attribute and rows attribute of HTML <frameset> tag</frameset></strong></p> <p><strong>html Function and usage of frameset tag:</strong># The </p>##<frameset> tag has a required attribute: either rows or cols, depending on your selection, which define the row or column sizes of the frame or nested frameset in the document window. and quantity. <p></p>Both properties accept a quoted, comma-separated list of values ​​that specify the absolute (pixels) or relative (percentage or remaining space) width of the frame (for columns), Or absolute or relative height (for rows). The number of these property values ​​determines how many rows or columns of frames the browser will display in the document window. <p></p>As with tables, the browser will try to display it as close to the given frameset dimensions as possible. However, the browser does not extend the bounds of the document window to accommodate framesets that extend beyond the edges, nor does the browser fill the window with empty space if the specified frame does not fill the entire window. Instead, the browser allocates space based on a frame's size relative to other frames in rows and columns, so that it fills the entire document window. (Did you notice that there are no scroll bars in a main frame document?) <p></p>The following are three examples: <p></p> <p>Example 1<strong></strong></p>The following code A 3-line frame will be created: <p><pre class='brush:php;toolbar:false;'>&lt;frameset rows=&quot;150,300,150&quot;&gt;</pre></p> Each of these lines spans the entire length of the document window. The first and last frames are set to 150 pixels high, and the second row is set to 300 pixels high. <p></p> <p>实际上,除非浏览器窗口正好是 600 像素高,否则浏览器将会自动按照比例延伸或压缩第一和最后一个框架,使得这两个框架都占据 1/4 的窗口空间。中间行将会占据剩下 1/2 的窗口空间。</p> <p><strong>实例2</strong></p> <p>用窗口尺寸的百分比表示的框架行和列尺寸数据更加实际。</p> <p>例如,下面这个示例与刚才那个示例的效果相同:</p><pre class='brush:php;toolbar:false;'>&lt;frameset rows=&quot;25%,50%,25%&quot;&gt;</pre><p>当然,如果这些百分比加起来不是 100%,浏览器也会自动按照比例重新给出每行尺寸以消除差异。</p> <p><strong>实例3</strong></p> <p>如果你像我们一样,那么将问题综合起来就不是一件难事。可能有的框架设计人员正为同样的困难而感到苦恼,这就解释了为什么他们要在 </p> <frameset> 的 rows 和 cols 值上加上星号。它告诉浏览器要在将相邻的框架放入框架集之后,给剩下的空间分配各自的行或列。<p>例如,当浏览器遇到下列框架标签时:</p><pre class='brush:php;toolbar:false;'>&lt;frameset cols=&quot;100, *&quot;&gt;</pre><p>上面的例子会生成一个宽为固定的 100 像素的列,然后再生成另一个框架列,该列会占据框架集中其余所有的空间。</p> <p>【相关推荐】</p> <p><a href="http://www.php.cn/div-tutorial-408459.html" target="_blank" title="HTML <fieldset> 标签的具体用法是什么?怎么用fieldset设置边框颜色?">HTML </a></p> <fieldset> 标签的具体用法是什么?怎么用fieldset设置边框颜色?<br><p><a href="http://www.php.cn/div-tutorial-408527.html" target="_blank" title="html textarea是什么意思?如何获取textarea标签中的换行符和空格?">html textarea是什么意思?如何获取textarea标签中的换行符和空格?</a><br></p> <p><br></p> </fieldset> </frameset> </frameset>

The above is the detailed content of How to use html frameset tag? Detailed explanation of html frameset tag attributes. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft