Home >
Article > Web Front-end > Detailed introduction of
What is the use of
37f861bd36cef5b6406eba87d20a5bab? How to use it? Should it be placed inside 6c04bd5ca3fcae76e30b72ad730ca86d or outside?
HTML Element - noframes
Definition
Contains the HTML used by browsers that do not support the FRAMESET element.
Contains HTML for browsers that do not support FRAMESET elements.
Comments
This element is available in HTML in Internet Explorer 3.0 and above, and in script in Internet Explorer 4.0 and above.
This element is an inline element.
This element requires a closing tag.
Can you explain it more plainly...? I don’t quite understand...
It is the element that is used when the browser does not support the box
That is to say, if this browser does not support f900b4fc197b16ab214eecf015bb6bd2, then use 37f861bd36cef5b6406eba87d20a5bab? Should 37f861bd36cef5b6406eba87d20a5bab be placed inside 6c04bd5ca3fcae76e30b72ad730ca86d or outside?
Inside
But dreamweaver and w3school are both in 62aee7307beb4b81d57e7c6ccd4fe8c16c04bd5ca3fcae76e30b72ad730ca86d36cc49f0c466276486e50c850b7e495623a17d2cc9873ab460d73d80ccc8d7a4 like this
I was wrong. It's outside. . .囧
To put it simply, it is the content displayed when the user's browser does not support Frame (Frame). This tag is placed outside the Body
Example:
<frameset rows="*" cols="80,*" frameborder="no" border="0" framespacing="0"> <frame src="left.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" /> <frameset rows="80,*" frameborder="no" border="0" framespacing="0"> <frame src="top.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" /> <frame src="main.html" name="mainFrame" id="mainFrame" /> </frameset> </frameset> <noframes> <body> 您的浏览器不支持框架 </body> </noframes></html>
The above is the detailed content of Detailed introduction of