HTML <frame> 标签的 noresize 属性 详解
HTML基础 2023-07-12 16:06:43小码哥的IT人生shichen
HTML <frame> 标签的 noresize 属性
实例
无法调整大小的框架:
<html>
<frameset cols="50%,50%">
<frame src="frame_a.htm" noresize="noresize" />
<frame src="frame_b.htm" />
</frameset>
</html>
完整实例【亲自试一试】:
<html>
<frameset cols="50%,*,25%">
<frame src="/demo/example/html/frame_a.html" noresize="noresize" />
<frame src="/demo/example/html/frame_b.html" />
<frame src="/demo/example/html/frame_c.html" />
</frameset>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
noresize 属性规定用户无法调整框架的大小。
默认地,可以通过拖动框架之间的“墙壁”来改变框架的大小,该属性可以锁定框架的大小。
语法
<frame noresize="noresize">
属性值
值 | 描述 |
---|---|
noresize | 用户无法调整框架的大小。 |