HTML学习笔记(五)框架

框架

通过使用框架,可以在同一个浏览器窗口中显示多个页面。

eg:

<frameset rows="50%,50%">

<frame src="/example/html/frame_a.html">

<frameset cols="25%,75%">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
</frameset>

</frameset>

表示两行分别占50%(也可以是长度),其中第二行分为两列,左列占25%,右边列占75%。frame表示各个框架页面。

不能将 <body></body> 标签与 <frameset></frameset> 标签同时使用!

内联框架

iframe 用于在网页内显示网页。

<iframe src="URL"></iframe>
原文地址:https://www.cnblogs.com/dengquan/p/8729199.html