scrolling属性指定是否在 <frame>中显示滚动条。默认情况下,如果内容大于 <frame>,则滚动条显示在 <frame>中。
框架A应始终显示滚动条:
<frameset cols="50%,50%"> <frame src="frame_a.htm" scrolling="yes"> <frame src="frame_b.htm"> </frameset>测试看看 ‹/›
IEFirefoxOperaChromeSafari
Internet Explorer 8 及之前的版本、Firefox、Opera 都支持 scrolling 属性。
注意:Internet Explorer 9 及之后的版本不再支持 scrolling 属性。
HTML5 不支持 <frame> 标签。
scrolling属性指定是否在<frame>中显示滚动条。
默认情况下,如果内容大于<frame>,则滚动条显示在<frame>中
<frame scrolling="auto|yes|no">
值 | 描述 |
---|---|
auto | 在需要的时候显示滚动条(默认)。 |
yes | 始终显示滚动条(即使不需要)。 |
no | 从不显示滚动条(即使需要)。 |