HTML <frame> 标签的 scrolling 属性 详解
HTML基础 2023-07-12 16:07:13小码哥的IT人生shichen
HTML <frame> 标签的 scrolling 属性
实例
总是显示滚动条的框架:
<html>
<frameset cols="50%,50%">
<frame src="frame_a.htm" scrolling="yes" />
<frame src="frame_b.htm" />
</frameset>
</html>
完整实例【亲自试一试】:
<html>
<frameset cols="50%,50%">
<frame src="/demo/example/html/frame_a.html" scrolling="yes" />
<frame src="/demo/example/html/frame_b.html" />
</frameset>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
scrolling 属性规定是否在框架中显示滚动条。
默认地,如果内容大于框架,就会出现滚动条。
语法
<frame scrolling="value">
属性值
值 | 描述 |
---|---|
auto | 在需要的时候显示滚动条。 |
yes | 始终显示滚动条(即使不需要)。 |
no | 从不显示滚动条(即使需要)。 |