实例代码:
<!doctype html>
<head>
<meta charset="utf-8">
</head>
<html>
<frameset cols="35%,50%,15%">
<frame src="frame_a.html" noresize="noresize" />
<frame src="frame_b.html" />
<frame src="frame_c.html" />
</frameset>
</html>
运行效果:
从这个实例中看出,我们在框架加入 noresize属性后,可以发现我们无法调整框架的大小了。
noresize属性:禁止调整框架的大小。
评论