Home > Article > Web Front-end > What is HTML framework
By using frames, you can display more than one page in the same browser window.
Frame(Recommended learning: HTML Getting Started Tutorial)
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 (f900b4fc197b16ab214eecf015bb6bd2)
Frame structure tag (f900b4fc197b16ab214eecf015bb6bd2) defines how to divide the window into frames
Each frameset defines a Series rows or columns
The value of rows/columns specifies the area of the screen occupied by each row or column
Note: The frameset tag is also translated by some articles and books for the frameset.
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, and 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 - Useful Tip:
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. (You can see how this is done in the first example below.
The above is the detailed content of What is HTML framework. For more information, please follow other related articles on the PHP Chinese website!