集册 HTML 标签教程 HTML <frame> scrolling 属性

HTML <frame> scrolling 属性

Xebcnor     最近更新时间:2019-10-10 03:23:24

384

HTML <frame> scrolling 属性

HTML frame 标签参考手册 HTML <frame> 标签

实例

一个总是显示滚动条的框架:

<frameset cols="50%,50%">
  <frame src="frame_a.htm" scrolling="yes">
  <frame src="frame_b.htm">
</frameset>

运行实例

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 8 及之前的版本、Firefox、Opera 都支持 scrolling 属性。

注意:Internet Explorer 9 及之后的版本不再支持 scrolling 属性。

定义和用法

HTML5 不支持 <frame> 标签。

scrolling 属性规定是否在 <frame> 中显示滚动条。

默认地,如果内容大于 <frame>,就会在 <frame> 中出现滚动条。

语法

<frame scrolling="auto|yes|no">

属性值

展开阅读全文