What does the frameset tag mean
Function: Define a frameset.
Description: 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.
Note: If you wish to validate a page that contains frames, make sure the DTD is set to "Frameset DTD". You cannot use the
tag with the tag. However, if you need to add ahtml frameset tag example
<html> <frameset cols="25%,50%,25%"> <frame src="http://www.php.cn/example/html/frame_a.html"> <frame src="http://www.php.cn/example/html/frame_b.html"> <frame src="http://www.php.cn/example/html/frame_c.html"> </frameset> </html>
The above is the detailed content of What does the frameset tag mean?. For more information, please follow other related articles on the PHP Chinese website!