Home  >  Article  >  Web Front-end  >  What is html5 framework

What is html5 framework

WBOY
WBOYOriginal
2022-01-18 10:16:442777browse

In html5, a frame refers to a document written in HTML language. By using the document, more than one page can be displayed in the same browser window. Each HTML document is called a frame, and each frame Independent of other frameworks.

What is html5 framework

The operating environment of this tutorial: Windows 10 system, HTML5 version, Dell G3 computer.

#What is html5 frame

By using frames, you can display more than one page in the same browser window.

Frames

By using frames, you can display more than one page in the same browser window. Each HTML document is called a frame, and each frame is independent of other frames.

Disadvantages of using frames:

Developers must keep track of more HTML documents at the same time

It is difficult to print the entire page

Frame structure tag (< ;frameset>)

The frame structure tag (f900b4fc197b16ab214eecf015bb6bd2) defines how the window is divided into frames

Each frameset defines a series of rows or columns

rows/ The value of columns specifies the area of ​​the screen occupied by each row or column

Note: The frameset tag is also translated as a frameset by some articles and books.

Frame tag (Frame)

The Frame tag defines the HTML document placed in each frame.

In the example below, we set up a two-column frameset. The first column is set to take up 25% of the browser window. The second column is set to take up 75% of the browser window. The HTML document "frame_a.htm" is placed in the first column, while the HTML document "frame_b.htm" is placed in the second column:

<frameset cols="25%,75%">
   <frame src="frame_a.htm">
   <frame src="frame_b.htm">
</frameset>

Basic Notes - Helpful Tips:

If a frame has a visible border, the user can drag the border to change its size. To prevent this from happening, add: noresize="noresize" to the 04a0d55efbbfd646a993fbc01f262c57 tag.

Add the 37f861bd36cef5b6406eba87d20a5bab tag for browsers that don't support frames.

Important note: You cannot use the 6c04bd5ca3fcae76e30b72ad730ca86d36cc49f0c466276486e50c850b7e4956 tag and the f900b4fc197b16ab214eecf015bb6bd2eb5f059992a0ae0ef16884cb75644e40 tag at the same time! However, if you add a 37f861bd36cef5b6406eba87d20a5bab tag that contains text, the text must be nested within a 6c04bd5ca3fcae76e30b72ad730ca86d36cc49f0c466276486e50c850b7e4956 tag. (In the first example below, you can see how it is implemented.

Recommended tutorial: "html video tutorial"

The above is the detailed content of What is html5 framework. 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