HTML框架<Frame>用法

 Frameset和Frame

1 <frameset rows="20%,80%" frameborder=yes bordercolor="green">
2     <frame src="top.html" noresize/>
3     <frameset cols="200px,*" >
4         <frame src="left.html"/>
5         <frame src="right.html" />
6     </frameset>
7 </frameset>

注意点:

1. frame大小通过rowscols属性调节,可以是百分比,也可以是具体像素px,还能够支持通配符*

2. 框架边框是否显示可以使用frameborder属性,也可以使用border属性;

    frameborder取值 : 1,0 或者yes,no;

    border取值:>=5px 显示, <5px 不显示, 值越大,边框越粗;

3. noresize属性控制frame大小是否可调节,上例代码中如果noresize放置在<frame src="left.html">中,上下左右frame大小都不能调节;

IFrame

1 <a href="http://www.sina.com.cn" target="iframe1">sina</a><br/>
2 <a href="http://www.163.com" target="iframe1">163</a><br/>
3 <a href="http://www.sohu.com" target="iframe1">sohu</a><br/>
4 <iframe name="iframe1" src="http://www.sina.com.cn" width=500 height=500/>
原文地址:https://www.cnblogs.com/guanhao/p/4940936.html