标签:style blog color 使用 os strong 2014 html
这个笔记是同学总结的,这里我整理到这边来,和大家分享------------2014.07.28 天气:大火炉
frame和iframe的区别:
1、frame不能脱离frameset单独使用,而iframe可以。
frame不能放在body中。
<!--<body>-->
<frameset rows=”50%,*”>
<frame name=“frame1” src=”test.html”/>
<frame name=“frame2” src=”test.html”/>
</frameset>
<!--</body>-->
<body>
<frameSet rows=”50%,*”>
<iframe name=”iframe1” src=”test.html”/>
<iframe name=”iframe2” src=”test.html”/>
</frameSet>
</body>
<!--<body>-->
<frameset rows=”50%,*”>
<frame name=“frame1” src=”test.html”/>
<frame name=“frame2” src=”test.html”/>
</frameset>
<!--</body>-->
<body>
<frameset>
<iframe height=”30%” name=”iframe1”,src=”test.html”/>
<iframe height=”100” name=”iframe2” src=”test.html”/>
</frameset>
</body>
如果在同一个页面中使用了两个以上的iframe,在IE中可以正常显示,而firefox中只能显示出第一个;使用两个以上的frame在IE和firefox中均可正常显示。
#3 IFrame 和 Frame 的异同,布布扣,bubuko.com
标签:style blog color 使用 os strong 2014 html
原文地址:http://www.cnblogs.com/zhongxia/p/HTML.html