scrolling屬性指定是否在 <frame>中顯示滾動條。默認(rèn)情況下,如果內(nèi)容大于 <frame>,則滾動條顯示在 <frame>中。
框架A應(yīng)始終顯示滾動條:
<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> 標(biāo)簽。
scrolling屬性指定是否在<frame>中顯示滾動條。
默認(rèn)情況下,如果內(nèi)容大于<frame>,則滾動條顯示在<frame>中
<frame scrolling="auto|yes|no">
值 | 描述 |
---|---|
auto | 在需要的時候顯示滾動條(默認(rèn))。 |
yes | 始終顯示滾動條(即使不需要)。 |
no | 從不顯示滾動條(即使需要)。 |